annotate src/glyphs-x.c @ 207:e45d5e7c476e r20-4b2

Import from CVS: tag r20-4b2
author cvs
date Mon, 13 Aug 2007 10:03:52 +0200
parents 169c0442b401
children 41ff10fd062f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* X-specific Lisp objects.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1993, 1994 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 Copyright (C) 1995 Board of Trustees, University of Illinois.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 Copyright (C) 1995 Tinker Systems
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 Copyright (C) 1995, 1996 Ben Wing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 Copyright (C) 1995 Sun Microsystems
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 /* Synched up with: Not in FSF. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 /* Original author: Jamie Zawinski for 19.8
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 font-truename stuff added by Jamie Zawinski for 19.10
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 subwindow support added by Chuck Thompson
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 additional XPM support added by Chuck Thompson
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 initial X-Face support added by Stig
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
32 rewritten/restructured by Ben Wing for 19.12/19.13
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 GIF/JPEG support added by Ben Wing for 19.14
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 PNG support added by Bill Perry for 19.14
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 Improved GIF/JPEG support added by Bill Perry for 19.14
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 Cleanup/simplification of error handling by Ben Wing for 19.14
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 Pointer/icon overhaul, more restructuring by Ben Wing for 19.14
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 TODO:
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
40 ImageMagick support
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 Convert images.el to C and stick it in here?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 #include <config.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 #include "lisp.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 #include "console-x.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 #include "glyphs-x.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 #include "objects-x.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 #include "xmu.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 #include "buffer.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 #include "frame.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 #include "insdel.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 #include "opaque.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 "sysfile.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
59 #ifdef HAVE_IMAGEMAGICK
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
60 #define HAVE_X11_MAGICK_IMAGE_H
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
61 #endif /* HAVE_IMAGEMAGICK */
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
62
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
63 #ifdef HAVE_X11_MAGICK_IMAGE_H
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
64 #include <magick.h>
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
65 /* #include <image.h> */
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
66 #include <assert.h>
138
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 124
diff changeset
67 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 #define LISP_DEVICE_TO_X_SCREEN(dev) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 XDefaultScreenOfDisplay (DEVICE_X_DISPLAY (XDEVICE (dev)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 DEFINE_IMAGE_INSTANTIATOR_FORMAT (xbm);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 Lisp_Object Qxbm;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 Lisp_Object Q_mask_file, Q_mask_data, Q_hotspot_x, Q_hotspot_y;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 Lisp_Object Q_foreground, Q_background;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 #ifdef HAVE_XPM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 DEFINE_IMAGE_INSTANTIATOR_FORMAT (xpm);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 Lisp_Object Qxpm;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 Lisp_Object Q_color_symbols;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 #endif
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
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
89 #ifdef HAVE_IMAGEMAGICK
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
90 DEFINE_IMAGE_INSTANTIATOR_FORMAT (imagick);
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
91 Lisp_Object Qimagick;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 DEFINE_IMAGE_INSTANTIATOR_FORMAT (cursor_font);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 Lisp_Object Qcursor_font;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 DEFINE_IMAGE_INSTANTIATOR_FORMAT (font);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
99 DEFINE_IMAGE_INSTANTIATOR_FORMAT (autodetect);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 static void cursor_font_instantiate (Lisp_Object image_instance,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 Lisp_Object pointer_fg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 Lisp_Object pointer_bg,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
105 int dest_mask,
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
106 Lisp_Object domain);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 #include "bitmaps.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 /* image instance methods */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 x_print_image_instance (struct Lisp_Image_Instance *p,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 Lisp_Object printcharfun,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 int escapeflag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 char buf[100];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 switch (IMAGE_INSTANCE_TYPE (p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 case IMAGE_POINTER:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 sprintf (buf, " (0x%lx", (unsigned long) IMAGE_INSTANCE_X_PIXMAP (p));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 write_c_string (buf, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 if (IMAGE_INSTANCE_X_MASK (p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 sprintf (buf, "/0x%lx", (unsigned long) IMAGE_INSTANCE_X_MASK (p));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 write_c_string (buf, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 write_c_string (")", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 break;
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
136 #if HAVE_SUBWINDOWS
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 case IMAGE_SUBWINDOW:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 /* #### implement me */
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
139 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 x_finalize_image_instance (struct Lisp_Image_Instance *p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 if (!p->data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 if (DEVICE_LIVE_P (XDEVICE (p->device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 Screen *scr = LISP_DEVICE_TO_X_SCREEN (IMAGE_INSTANCE_DEVICE (p));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 if (IMAGE_INSTANCE_X_PIXMAP (p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 XFreePixmap (DisplayOfScreen (scr), IMAGE_INSTANCE_X_PIXMAP (p));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 if (IMAGE_INSTANCE_X_MASK (p) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 IMAGE_INSTANCE_X_MASK (p) != IMAGE_INSTANCE_X_PIXMAP (p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 XFreePixmap (DisplayOfScreen (scr), IMAGE_INSTANCE_X_MASK (p));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 IMAGE_INSTANCE_X_PIXMAP (p) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 IMAGE_INSTANCE_X_MASK (p) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 if (IMAGE_INSTANCE_X_CURSOR (p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 XFreeCursor (DisplayOfScreen (scr), IMAGE_INSTANCE_X_CURSOR (p));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 IMAGE_INSTANCE_X_CURSOR (p) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 if (IMAGE_INSTANCE_X_NPIXELS (p) != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 XFreeColors (DisplayOfScreen (scr),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 DefaultColormapOfScreen (scr),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 IMAGE_INSTANCE_X_PIXELS (p),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 IMAGE_INSTANCE_X_NPIXELS (p), 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 IMAGE_INSTANCE_X_NPIXELS (p) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 if (IMAGE_INSTANCE_X_PIXELS (p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 xfree (IMAGE_INSTANCE_X_PIXELS (p));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 IMAGE_INSTANCE_X_PIXELS (p) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 xfree (p->data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 p->data = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 x_image_instance_equal (struct Lisp_Image_Instance *p1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 struct Lisp_Image_Instance *p2, int depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 switch (IMAGE_INSTANCE_TYPE (p1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 case IMAGE_POINTER:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 if (IMAGE_INSTANCE_X_NPIXELS (p1) != IMAGE_INSTANCE_X_NPIXELS (p2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 return 0;
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
199 #if HAVE_SUBWINDOWS
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 case IMAGE_SUBWINDOW:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 /* #### implement me */
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
202 #endif
56
c0965ff3b039 Import from CVS: tag r19-16-pre3
cvs
parents: 50
diff changeset
203 break;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 static unsigned long
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 x_image_instance_hash (struct Lisp_Image_Instance *p, int depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 switch (IMAGE_INSTANCE_TYPE (p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 case IMAGE_POINTER:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 return IMAGE_INSTANCE_X_NPIXELS (p);
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
220 #if HAVE_SUBWINDOWS
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 case IMAGE_SUBWINDOW:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 /* #### implement me */
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
223 return 0;
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
224 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 /* Set all the slots in an image instance structure to reasonable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 default values. This is used somewhere within an instantiate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 method. It is assumed that the device slot within the image
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 instance is already set -- this is the case when instantiate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 methods are called. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 x_initialize_pixmap_image_instance (struct Lisp_Image_Instance *ii,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 enum image_instance_type type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
240 ii->data = xnew_and_zero (struct x_image_instance_data);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 IMAGE_INSTANCE_TYPE (ii) = type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 IMAGE_INSTANCE_PIXMAP_MASK_FILENAME (ii) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 IMAGE_INSTANCE_PIXMAP_FG (ii) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 IMAGE_INSTANCE_PIXMAP_BG (ii) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 /* pixmap file functions */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 /* Where bitmaps are; initialized from resource database */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 Lisp_Object Vx_bitmap_file_path;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 #ifndef BITMAPDIR
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 #define BITMAPDIR "/usr/include/X11/bitmaps"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 #define USE_XBMLANGPATH
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 /* Given a pixmap filename, look through all of the "standard" places
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 where the file might be located. Return a full pathname if found;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 otherwise, return Qnil. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 locate_pixmap_file (Lisp_Object name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 /* This function can GC if IN_REDISPLAY is false */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 Display *display;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 /* Check non-absolute pathnames with a directory component relative to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 the search path; that's the way Xt does it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 /* #### Unix-specific */
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
277 if (XSTRING_BYTE (name, 0) == '/' ||
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
278 (XSTRING_BYTE (name, 0) == '.' &&
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
279 (XSTRING_BYTE (name, 1) == '/' ||
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
280 (XSTRING_BYTE (name, 1) == '.' &&
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
281 (XSTRING_BYTE (name, 2) == '/')))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 if (!NILP (Ffile_readable_p (name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 return name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 if (NILP (Vdefault_x_device))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 /* This may occur during intialization. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 /* We only check the bitmapFilePath resource on the original X device. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 display = DEVICE_X_DISPLAY (XDEVICE (Vdefault_x_device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 #ifdef USE_XBMLANGPATH
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 char *path = egetenv ("XBMLANGPATH");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 SubstitutionRec subs[1];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 subs[0].match = 'B';
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 8
diff changeset
301 subs[0].substitution = (char *) XSTRING_DATA (name);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 /* #### Motif uses a big hairy default if $XBMLANGPATH isn't set.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 We don't. If you want it used, set it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 if (path &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 (path = XtResolvePathname (display, "bitmaps", 0, 0, path,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 subs, XtNumber (subs), 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 name = build_string (path);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 XtFree (path);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 return (name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 if (NILP (Vx_bitmap_file_path))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 char *type = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 XrmValue value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 if (XrmGetResource (XtDatabase (display),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 "bitmapFilePath", "BitmapFilePath", &type, &value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 && !strcmp (type, "String"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 Vx_bitmap_file_path = decode_env_path (0, (char *) value.addr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 Vx_bitmap_file_path = nconc2 (Vx_bitmap_file_path,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 (list1 (build_string (BITMAPDIR))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 Lisp_Object found;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 if (locate_file (Vx_bitmap_file_path, name, "", &found, R_OK) < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 Lisp_Object temp = list1 (Vdata_directory);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 GCPRO1 (temp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 locate_file (temp, name, "", &found, R_OK);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 return found;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 /* If INSTANTIATOR refers to inline data, return Qnil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 If INSTANTIATOR refers to data in a file, return the full filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 if it exists; otherwise, return a cons of (filename).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 FILE_KEYWORD and DATA_KEYWORD are symbols specifying the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 keywords used to look up the file and inline data,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 respectively, in the instantiator. Normally these would
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 be Q_file and Q_data, but might be different for mask data. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 potential_pixmap_file_instantiator (Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 Lisp_Object file_keyword,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 Lisp_Object data_keyword)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 Lisp_Object file;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 Lisp_Object data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 assert (VECTORP (instantiator));
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
361
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 data = find_keyword_in_vector (instantiator, data_keyword);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 file = find_keyword_in_vector (instantiator, file_keyword);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 if (!NILP (file) && NILP (data))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 Lisp_Object retval = locate_pixmap_file (file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 if (!NILP (retval))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 return retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 return Fcons (file, Qnil); /* should have been file */
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 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 }
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 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 simple_image_type_normalize (Lisp_Object inst, Lisp_Object console_type,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 Lisp_Object image_type_tag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 {
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
382 /* This function can call lisp */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 Lisp_Object file = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 Lisp_Object alist = Qnil;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
386
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 GCPRO2 (file, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 /* Now, convert any file data into inline data. At the end of this,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 `data' will contain the inline data (if any) or Qnil, and `file'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 will contain the name this data was derived from (if known) or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 Qnil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 Note that if we cannot generate any regular inline data, we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 skip out. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 if (CONSP (file)) /* failure locating filename */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 signal_double_file_error ("Opening pixmap file",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 "no such file or directory",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 Fcar (file));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 if (NILP (file)) /* no conversion necessary */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 RETURN_UNGCPRO (inst);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 alist = tagged_vector_to_alist (inst);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 Lisp_Object data = make_string_from_file (file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 alist = remassq_no_quit (Q_file, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 /* there can't be a :data at this point. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 alist = Fcons (Fcons (Q_file, file),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 Fcons (Fcons (Q_data, data), alist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 Lisp_Object result = alist_to_tagged_vector (image_type_tag, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 free_alist (alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 RETURN_UNGCPRO (result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 write_lisp_string_to_temp_file (Lisp_Object string, char *filename_out)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 Extbyte *bytes;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 Extcount len;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 FILE *stream;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
430
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 /* #### This is a definite problem under Mule due to the amount of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 stack data it might allocate. Need to be able to convert and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 write out to a file. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 GET_STRING_BINARY_DATA_ALLOCA (string, bytes, len);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 /* Write out to a temporary file ... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 sprintf (filename_out, "/tmp/emacs%d.XXXXXX", (int) getpid ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 mktemp (filename_out);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 stream = fopen (filename_out, "w");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 if (!stream)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 temp_file_error:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 if (stream)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 int old_errno = errno;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 fclose (stream);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 unlink (filename_out);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 errno = old_errno;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 report_file_error ("Creating temp file",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 list1 (build_string (filename_out)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 if (fwrite (bytes, len, 1, stream) != 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 goto temp_file_error;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 if (fclose (stream) != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 stream = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 goto temp_file_error;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 /* cursor functions */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 /* Check that this server supports cursors of size WIDTH * HEIGHT. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 not, signal an error. INSTANTIATOR is only used in the error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 message. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 check_pointer_sizes (Screen *xs, unsigned int width, unsigned int height,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 unsigned int best_width, best_height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 if (! XQueryBestCursor (DisplayOfScreen (xs), RootWindowOfScreen (xs),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 width, height, &best_width, &best_height))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 /* this means that an X error of some sort occurred (we trap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 these so they're not fatal). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 signal_simple_error ("XQueryBestCursor() failed?", instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 if (width > best_width || height > best_height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 error_with_frob (instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 "pointer too large (%dx%d): "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 "server requires %dx%d or smaller",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 width, height, best_width, best_height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 generate_cursor_fg_bg (Lisp_Object device, Lisp_Object *foreground,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 Lisp_Object *background, XColor *xfg, XColor *xbg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 if (!NILP (*foreground) && !COLOR_INSTANCEP (*foreground))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 *foreground =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 Fmake_color_instance (*foreground, device,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 encode_error_behavior_flag (ERROR_ME));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 if (COLOR_INSTANCEP (*foreground))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 *xfg = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (*foreground));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 xfg->pixel = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 xfg->red = xfg->green = xfg->blue = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
507
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 if (!NILP (*background) && !COLOR_INSTANCEP (*background))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 *background =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 Fmake_color_instance (*background, device,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 encode_error_behavior_flag (ERROR_ME));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 if (COLOR_INSTANCEP (*background))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 *xbg = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (*background));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 xbg->pixel = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 xbg->red = xbg->green = xbg->blue = ~0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 maybe_recolor_cursor (Lisp_Object image_instance, Lisp_Object foreground,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 Lisp_Object background)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 Lisp_Object device = XIMAGE_INSTANCE_DEVICE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 XColor xfg, xbg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 generate_cursor_fg_bg (device, &foreground, &background, &xfg, &xbg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 if (!NILP (foreground) || !NILP (background))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 XRecolorCursor (DEVICE_X_DISPLAY (XDEVICE (device)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 XIMAGE_INSTANCE_X_CURSOR (image_instance),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 &xfg, &xbg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 XIMAGE_INSTANCE_PIXMAP_FG (image_instance) = foreground;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 XIMAGE_INSTANCE_PIXMAP_BG (image_instance) = background;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 /* color pixmap functions */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 /* Initialize an image instance from an XImage.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 DEST_MASK specifies the mask of allowed image types.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 PIXELS and NPIXELS specify an array of pixels that are used in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 the image. These need to be kept around for the duration of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 image. When the image instance is freed, XFreeColors() will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 automatically be called on all the pixels specified here; thus,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 you should have allocated the pixels yourself using XAllocColor()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 or the like. The array passed in is used directly without
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 being copied, so it should be heap data created with xmalloc().
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 It will be freed using xfree() when the image instance is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 destroyed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 If this fails, signal an error. INSTANTIATOR is only used
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 in the error message.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 #### This should be able to handle conversion into `pointer'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 Use the same code as for `xpm'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 init_image_instance_from_x_image (struct Lisp_Image_Instance *ii,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 XImage *ximage,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 int dest_mask,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 unsigned long *pixels,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 int npixels,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 Display *dpy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 Screen *xs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 GC gc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 Drawable d;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 Pixmap pixmap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 if (!DEVICE_X_P (XDEVICE (device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 signal_simple_error ("Not an X device", device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 xs = DefaultScreenOfDisplay (dpy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 d = RootWindowOfScreen (xs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 if (!(dest_mask & IMAGE_COLOR_PIXMAP_MASK))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 incompatible_image_types (instantiator, dest_mask,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 IMAGE_COLOR_PIXMAP_MASK);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
589
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 pixmap = XCreatePixmap (dpy, d, ximage->width,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 ximage->height, ximage->depth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 if (!pixmap)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 signal_simple_error ("Unable to create pixmap", instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 gc = XCreateGC (dpy, pixmap, 0, NULL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 if (!gc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 XFreePixmap (dpy, pixmap);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 signal_simple_error ("Unable to create GC", instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
601
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 XPutImage (dpy, pixmap, gc, ximage, 0, 0, 0, 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 ximage->width, ximage->height);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
604
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 XFreeGC (dpy, gc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 x_initialize_pixmap_image_instance (ii, IMAGE_COLOR_PIXMAP);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 find_keyword_in_vector (instantiator, Q_file);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
611
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 IMAGE_INSTANCE_X_PIXMAP (ii) = pixmap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 IMAGE_INSTANCE_X_MASK (ii) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 IMAGE_INSTANCE_PIXMAP_WIDTH (ii) = ximage->width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii) = ximage->height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 IMAGE_INSTANCE_PIXMAP_DEPTH (ii) = ximage->depth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 IMAGE_INSTANCE_X_PIXELS (ii) = pixels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 IMAGE_INSTANCE_X_NPIXELS (ii) = npixels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 /**********************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 * XBM *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 **********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 /* Check if DATA represents a valid inline XBM spec (i.e. a list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 of (width height bits), with checking done on the dimensions).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 If not, signal an error. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 check_valid_xbm_inline (Lisp_Object data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 Lisp_Object width, height, bits;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 CHECK_CONS (data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 if (!CONSP (XCDR (data)) || !CONSP (XCDR (XCDR (data))) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 !NILP (XCDR (XCDR (XCDR (data)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 signal_simple_error ("Must be list of 3 elements", data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 width = XCAR (data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 height = XCAR (XCDR (data));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 bits = XCAR (XCDR (XCDR (data)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 if (!INTP (width) || !INTP (height) || !STRINGP (bits))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 signal_simple_error ("Must be (width height bits)",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 vector3 (width, height, bits));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 if (XINT (width) <= 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 signal_simple_error ("Width must be > 0", width);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 if (XINT (height) <= 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 signal_simple_error ("Height must be > 0", height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 if (((unsigned) (XINT (width) * XINT (height)) / 8)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 > string_char_length (XSTRING (bits)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 signal_simple_error ("data is too short for W and H",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 vector3 (width, height, bits));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 /* Validate method for XBM's. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 xbm_validate (Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 file_or_data_must_be_present (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 /* Given a filename that is supposed to contain XBM data, return
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 the inline representation of it as (width height bits). Return
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 the hotspot through XHOT and YHOT, if those pointers are not 0.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 If there is no hotspot, XHOT and YHOT will contain -1.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 If the function fails:
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 OK_IF_DATA_INVALID is set and the data was invalid,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 return Qt.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 -- maybe return an error, or return Qnil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
679
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 bitmap_to_lisp_data (Lisp_Object name, int *xhot, int *yhot,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 int ok_if_data_invalid)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 unsigned int w, h;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 Extbyte *data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 int result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 CONST char *filename_ext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 GET_C_STRING_FILENAME_DATA_ALLOCA (name, filename_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 result = XmuReadBitmapDataFromFile (filename_ext, &w, &h, &data, xhot, yhot);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 if (result == BitmapSuccess)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 Lisp_Object retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 int len = (w + 7) / 8 * h;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 retval = list3 (make_int (w), make_int (h),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699 make_ext_string (data, len, FORMAT_BINARY));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 XFree ((char *) data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 return retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 switch (result)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 case BitmapOpenFailed:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 /* should never happen */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 signal_double_file_error ("Opening bitmap file",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 "no such file or directory",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 case BitmapFileInvalid:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 if (ok_if_data_invalid)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 signal_double_file_error ("Reading bitmap file",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 "invalid data in file",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 case BitmapNoMemory:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 signal_double_file_error ("Reading bitmap file",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 "out of memory",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 signal_double_file_error_2 ("Reading bitmap file",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 "unknown error code",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 make_int (result), name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 return Qnil; /* not reached */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 xbm_mask_file_munging (Lisp_Object alist, Lisp_Object file,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 Lisp_Object mask_file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 /* This is unclean but it's fairly standard -- a number of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 bitmaps in /usr/include/X11/bitmaps use it -- so we support
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 if (NILP (mask_file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 /* don't override explicitly specified mask data. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 && NILP (assq_no_quit (Q_mask_data, alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 && !NILP (file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 mask_file =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751 locate_pixmap_file (concat2 (file, build_string ("Mask")));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752 if (NILP (mask_file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 mask_file =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 locate_pixmap_file (concat2 (file, build_string ("msk")));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 if (!NILP (mask_file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 Lisp_Object mask_data =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 bitmap_to_lisp_data (mask_file, 0, 0, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 alist = remassq_no_quit (Q_mask_file, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 /* there can't be a :mask-data at this point. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 alist = Fcons (Fcons (Q_mask_file, mask_file),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 Fcons (Fcons (Q_mask_data, mask_data), alist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 return alist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 /* Normalize method for XBM's. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 xbm_normalize (Lisp_Object inst, Lisp_Object console_type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 Lisp_Object file = Qnil, mask_file = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 struct gcpro gcpro1, gcpro2, gcpro3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 Lisp_Object alist = Qnil;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
778
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779 GCPRO3 (file, mask_file, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 /* Now, convert any file data into inline data for both the regular
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782 data and the mask data. At the end of this, `data' will contain
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 the inline data (if any) or Qnil, and `file' will contain
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 the name this data was derived from (if known) or Qnil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 Likewise for `mask_file' and `mask_data'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787 Note that if we cannot generate any regular inline data, we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788 skip out. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791 mask_file = potential_pixmap_file_instantiator (inst, Q_mask_file,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 Q_mask_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 if (CONSP (file)) /* failure locating filename */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 signal_double_file_error ("Opening bitmap file",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 "no such file or directory",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 Fcar (file));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 if (NILP (file) && NILP (mask_file)) /* no conversion necessary */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 RETURN_UNGCPRO (inst);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 alist = tagged_vector_to_alist (inst);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804 if (!NILP (file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806 int xhot, yhot;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 Lisp_Object data = bitmap_to_lisp_data (file, &xhot, &yhot, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808 alist = remassq_no_quit (Q_file, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 /* there can't be a :data at this point. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 alist = Fcons (Fcons (Q_file, file),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 Fcons (Fcons (Q_data, data), alist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 if (xhot != -1 && NILP (assq_no_quit (Q_hotspot_x, alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814 alist = Fcons (Fcons (Q_hotspot_x, make_int (xhot)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 if (yhot != -1 && NILP (assq_no_quit (Q_hotspot_y, alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 alist = Fcons (Fcons (Q_hotspot_y, make_int (yhot)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818 alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 alist = xbm_mask_file_munging (alist, file, mask_file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 Lisp_Object result = alist_to_tagged_vector (Qxbm, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825 free_alist (alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 RETURN_UNGCPRO (result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 /* Given inline data for a mono pixmap, create and return the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831 corresponding X object. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 static Pixmap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 pixmap_from_xbm_inline (Lisp_Object device, int width, int height,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 /* Note that data is in ext-format! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 CONST Extbyte *bits)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838 Screen *screen = LISP_DEVICE_TO_X_SCREEN (device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839 return XCreatePixmapFromBitmapData (DisplayOfScreen (screen),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 RootWindowOfScreen (screen),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841 (char *) bits, width, height,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 1, 0, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845 /* Given inline data for a mono pixmap, initialize the given
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 image instance accordingly. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 init_image_instance_from_xbm_inline (struct Lisp_Image_Instance *ii,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 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 char *bits,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 Lisp_Object pointer_fg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 Lisp_Object pointer_bg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 int dest_mask,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857 Pixmap mask,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858 Lisp_Object mask_filename)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 Lisp_Object foreground = find_keyword_in_vector (instantiator, Q_foreground);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 Lisp_Object background = find_keyword_in_vector (instantiator, Q_background);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 Display *dpy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 Screen *scr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865 enum image_instance_type type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867 if (!DEVICE_X_P (XDEVICE (device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 signal_simple_error ("Not an X device", device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871 scr = DefaultScreenOfDisplay (dpy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 if ((dest_mask & IMAGE_MONO_PIXMAP_MASK) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874 (dest_mask & IMAGE_COLOR_PIXMAP_MASK))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876 if (!NILP (foreground) || !NILP (background))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 type = IMAGE_COLOR_PIXMAP;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 type = IMAGE_MONO_PIXMAP;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 else if (dest_mask & IMAGE_MONO_PIXMAP_MASK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 type = IMAGE_MONO_PIXMAP;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883 else if (dest_mask & IMAGE_COLOR_PIXMAP_MASK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884 type = IMAGE_COLOR_PIXMAP;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885 else if (dest_mask & IMAGE_POINTER_MASK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 type = IMAGE_POINTER;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888 incompatible_image_types (instantiator, dest_mask,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889 IMAGE_MONO_PIXMAP_MASK | IMAGE_COLOR_PIXMAP_MASK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890 | IMAGE_POINTER_MASK);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
892 x_initialize_pixmap_image_instance (ii, type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
893 IMAGE_INSTANCE_PIXMAP_WIDTH (ii) = width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii) = height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896 find_keyword_in_vector (instantiator, Q_file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898 switch (type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902 IMAGE_INSTANCE_X_PIXMAP (ii) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903 pixmap_from_xbm_inline (device, width, height, (Extbyte *) bits);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909 Dimension d = DefaultDepthOfScreen (scr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910 unsigned long fg = BlackPixelOfScreen (scr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911 unsigned long bg = WhitePixelOfScreen (scr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913 if (!NILP (foreground) && !COLOR_INSTANCEP (foreground))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914 foreground =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915 Fmake_color_instance (foreground, device,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916 encode_error_behavior_flag (ERROR_ME));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
917
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918 if (COLOR_INSTANCEP (foreground))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919 fg = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (foreground)).pixel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921 if (!NILP (background) && !COLOR_INSTANCEP (background))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922 background =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923 Fmake_color_instance (background, device,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924 encode_error_behavior_flag (ERROR_ME));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926 if (COLOR_INSTANCEP (background))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927 bg = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (background)).pixel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929 /* We used to duplicate the pixels using XAllocColor(), to protect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930 against their getting freed. Just as easy to just store the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931 color instances here and GC-protect them, so this doesn't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932 happen. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 IMAGE_INSTANCE_PIXMAP_FG (ii) = foreground;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934 IMAGE_INSTANCE_PIXMAP_BG (ii) = background;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935 IMAGE_INSTANCE_X_PIXMAP (ii) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936 XCreatePixmapFromBitmapData (DisplayOfScreen (scr),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937 RootWindowOfScreen (scr),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938 (char *) bits, width, height,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939 fg, bg, d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940 IMAGE_INSTANCE_PIXMAP_DEPTH (ii) = d;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
942 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944 case IMAGE_POINTER:
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
945 {
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946 XColor fg_color, bg_color;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947 Pixmap source;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949 check_pointer_sizes (scr, width, height, instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951 source =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952 XCreatePixmapFromBitmapData (DisplayOfScreen (scr),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953 RootWindowOfScreen (scr),
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 1, 0, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 if (NILP (foreground))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 foreground = pointer_fg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 if (NILP (background))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960 background = pointer_bg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961 generate_cursor_fg_bg (device, &foreground, &background,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 &fg_color, &bg_color);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 IMAGE_INSTANCE_PIXMAP_FG (ii) = foreground;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965 IMAGE_INSTANCE_PIXMAP_BG (ii) = background;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967 find_keyword_in_vector (instantiator, Q_hotspot_x);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968 IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969 find_keyword_in_vector (instantiator, Q_hotspot_y);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970 IMAGE_INSTANCE_X_CURSOR (ii) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971 XCreatePixmapCursor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972 (dpy, source, mask, &fg_color, &bg_color,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 !NILP (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii)) ?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974 XINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii)) : 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975 !NILP (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii)) ?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 XINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii)) : 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983 }
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
984
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985 static int
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
986 xbm_possible_dest_types (void)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987 {
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
988 return
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
989 IMAGE_MONO_PIXMAP_MASK |
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
990 IMAGE_COLOR_PIXMAP_MASK |
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991 IMAGE_POINTER_MASK;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 xbm_instantiate_1 (Lisp_Object image_instance, Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
997 int dest_mask, int width, int height,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998 /* Note that data is in ext-format! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999 CONST char *bits)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001 Lisp_Object mask_data = find_keyword_in_vector (instantiator, Q_mask_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002 Lisp_Object mask_file = find_keyword_in_vector (instantiator, Q_mask_file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1004 Pixmap mask = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005 CONST char *gcc_may_you_rot_in_hell;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1007 if (!NILP (mask_data))
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1008 {
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009 GET_C_STRING_BINARY_DATA_ALLOCA (XCAR (XCDR (XCDR (mask_data))),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 gcc_may_you_rot_in_hell);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011 mask =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012 pixmap_from_xbm_inline (IMAGE_INSTANCE_DEVICE (ii),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013 XINT (XCAR (mask_data)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 XINT (XCAR (XCDR (mask_data))),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015 (CONST unsigned char *)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016 gcc_may_you_rot_in_hell);
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1017 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019 init_image_instance_from_xbm_inline (ii, width, height, bits,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020 instantiator, pointer_fg, pointer_bg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021 dest_mask, mask, mask_file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024 /* Instantiate method for XBM's. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027 xbm_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1028 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1029 int dest_mask, Lisp_Object domain)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1030 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1031 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032 CONST char *gcc_go_home;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034 assert (!NILP (data));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036 GET_C_STRING_BINARY_DATA_ALLOCA (XCAR (XCDR (XCDR (data))),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037 gcc_go_home);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039 xbm_instantiate_1 (image_instance, instantiator, pointer_fg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040 pointer_bg, dest_mask, XINT (XCAR (data)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041 XINT (XCAR (XCDR (data))), gcc_go_home);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045 #ifdef HAVE_XPM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047 /**********************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048 * XPM *
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 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 check_valid_xpm_color_symbols (Lisp_Object data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054 Lisp_Object rest;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1055
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056 for (rest = data; !NILP (rest); rest = XCDR (rest))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058 if (!CONSP (rest) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 !CONSP (XCAR (rest)) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060 !STRINGP (XCAR (XCAR (rest))) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061 (!STRINGP (XCDR (XCAR (rest))) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062 !COLOR_SPECIFIERP (XCDR (XCAR (rest)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063 signal_simple_error ("Invalid color symbol alist", data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1066
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1067 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068 xpm_validate (Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1069 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1070 file_or_data_must_be_present (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1072
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074 pixmap_to_lisp_data (Lisp_Object name, int ok_if_data_invalid)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076 char **data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077 int result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 8
diff changeset
1079 result = XpmReadFileToData ((char *) XSTRING_DATA (name), &data);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081 if (result == XpmSuccess)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1083 Lisp_Object retval = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084 struct buffer *old_buffer = current_buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085 Lisp_Object temp_buffer =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086 Fget_buffer_create (build_string (" *pixmap conversion*"));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087 int elt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 int height, width, ncolors;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089 struct gcpro gcpro1, gcpro2, gcpro3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1090 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1092 GCPRO3 (name, retval, temp_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094 specbind (Qinhibit_quit, Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095 set_buffer_internal (XBUFFER (temp_buffer));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096 Ferase_buffer (Fcurrent_buffer ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1097
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1098 buffer_insert_c_string (current_buffer, "/* XPM */\r");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099 buffer_insert_c_string (current_buffer, "static char *pixmap[] = {\r");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101 sscanf (data[0], "%d %d %d", &height, &width, &ncolors);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 for (elt = 0; elt <= width + ncolors; elt++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 buffer_insert_c_string (current_buffer, "\"");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 buffer_insert_c_string (current_buffer, data[elt]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107 if (elt < width + ncolors)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108 buffer_insert_c_string (current_buffer, "\",\r");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110 buffer_insert_c_string (current_buffer, "\"};\r");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 retval = Fbuffer_substring (Qnil, Qnil, Fcurrent_buffer ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114 XpmFree (data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116 set_buffer_internal (old_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1117 unbind_to (speccount, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 RETURN_UNGCPRO (retval);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 switch (result)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124 case XpmFileInvalid:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126 if (ok_if_data_invalid)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128 signal_simple_error ("invalid XPM data in file", name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130 case XpmNoMemory:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132 signal_double_file_error ("Reading pixmap file",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133 "out of memory", name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1134 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135 case XpmOpenFailed:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137 /* should never happen? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138 signal_double_file_error ("Opening pixmap file",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139 "no such file or directory", name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1141 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143 signal_double_file_error_2 ("Parsing pixmap file",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1144 "unknown error code",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145 make_int (result), name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1146 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150 return Qnil; /* not reached */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1152
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153 Lisp_Object Vxpm_color_symbols;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156 evaluate_xpm_color_symbols (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158 Lisp_Object rest, results = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161 GCPRO2 (rest, results);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162 for (rest = Vxpm_color_symbols; !NILP (rest); rest = XCDR (rest))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1163 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164 Lisp_Object name, value, cons;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1165
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166 CHECK_CONS (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167 cons = XCAR (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168 CHECK_CONS (cons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169 name = XCAR (cons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1170 CHECK_STRING (name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1171 value = XCDR (cons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172 CHECK_CONS (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173 value = XCAR (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174 value = Feval (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175 if (NILP (value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177 if (!STRINGP (value) && !COLOR_SPECIFIERP (value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178 signal_simple_error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179 ("Result from xpm-color-symbols eval must be nil, string, or color",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180 value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181 results = Fcons (Fcons (name, value), results);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183 UNGCPRO; /* no more evaluation */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1184 return results;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1188 xpm_normalize (Lisp_Object inst, Lisp_Object console_type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190 Lisp_Object file = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191 Lisp_Object color_symbols;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1192 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193 Lisp_Object alist = Qnil;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1194
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195 GCPRO2 (file, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1197 /* Now, convert any file data into inline data. At the end of this,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1198 `data' will contain the inline data (if any) or Qnil, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1199 `file' will contain the name this data was derived from (if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1200 known) or Qnil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1201
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202 Note that if we cannot generate any regular inline data, we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203 skip out. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1204
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1206
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207 if (CONSP (file)) /* failure locating filename */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208 signal_double_file_error ("Opening pixmap file",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209 "no such file or directory",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210 Fcar (file));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1212 color_symbols = find_keyword_in_vector_or_given (inst, Q_color_symbols,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1213 Qunbound);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215 if (NILP (file) && !UNBOUNDP (color_symbols))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216 /* no conversion necessary */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217 RETURN_UNGCPRO (inst);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219 alist = tagged_vector_to_alist (inst);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221 if (!NILP (file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1223 Lisp_Object data = pixmap_to_lisp_data (file, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1224 alist = remassq_no_quit (Q_file, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225 /* there can't be a :data at this point. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1226 alist = Fcons (Fcons (Q_file, file),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1227 Fcons (Fcons (Q_data, data), alist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230 if (UNBOUNDP (color_symbols))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1232 color_symbols = evaluate_xpm_color_symbols ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1233 alist = Fcons (Fcons (Q_color_symbols, color_symbols),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1234 alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238 Lisp_Object result = alist_to_tagged_vector (Qxpm, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 free_alist (alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240 RETURN_UNGCPRO (result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1243
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1244 static int
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1245 xpm_possible_dest_types (void)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246 {
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1247 return
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1248 IMAGE_MONO_PIXMAP_MASK |
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1249 IMAGE_COLOR_PIXMAP_MASK |
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250 IMAGE_POINTER_MASK;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1252
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253 /* xpm 3.2g and better has XpmCreatePixmapFromBuffer()...
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1254 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
1255 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1256 #if (XpmVersion >= 3) || defined(XpmExactColors)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1257 # define XPM_DOES_BUFFERS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1258 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1259
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1260 #ifndef XPM_DOES_BUFFERS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1261 Your version of XPM is too old. You cannot compile with it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1262 Upgrade to version 3.2g or better or compile with --with-xpm=no.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263 #endif /* !XPM_DOES_BUFFERS */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265 static XpmColorSymbol *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266 extract_xpm_color_names (XpmAttributes *xpmattrs, Lisp_Object device,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
1267 Lisp_Object domain,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1268 Lisp_Object color_symbol_alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1269 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1270 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1271 Screen *xs = LISP_DEVICE_TO_X_SCREEN (device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1272 Display *dpy = DisplayOfScreen (xs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1273 Colormap cmap = DefaultColormapOfScreen (xs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1274 XColor color;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1275 Lisp_Object rest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1276 Lisp_Object results = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1278 XpmColorSymbol *symbols;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1279 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1280
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1281 GCPRO2 (results, device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1282
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1283 /* We built up results to be (("name" . #<color>) ...) so that if an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1284 error happens we don't lose any malloc()ed data, or more importantly,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1285 leave any pixels allocated in the server. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1286 i = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1287 LIST_LOOP (rest, color_symbol_alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1288 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1289 Lisp_Object cons = XCAR (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1290 Lisp_Object name = XCAR (cons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1291 Lisp_Object value = XCDR (cons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1292 if (NILP (value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1293 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1294 if (STRINGP (value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1295 value =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1296 Fmake_color_instance
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1297 (value, device, encode_error_behavior_flag (ERROR_ME_NOT));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1298 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1299 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1300 assert (COLOR_SPECIFIERP (value));
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
1301 value = Fspecifier_instance (value, domain, Qnil, Qnil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1302 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1303 if (NILP (value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1304 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1305 results = noseeum_cons (noseeum_cons (name, value), results);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1306 i++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1307 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1308 UNGCPRO; /* no more evaluation */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1309
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1310 if (i == 0) return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1311
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1312 symbols = xnew_array (XpmColorSymbol, i);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1313 xpmattrs->valuemask |= XpmColorSymbols;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1314 xpmattrs->colorsymbols = symbols;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1315 xpmattrs->numsymbols = i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1316
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1317 while (--i >= 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1318 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1319 Lisp_Object cons = XCAR (results);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1320 color = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (XCDR (cons)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1321 /* 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
1322 the pixel we were passed is later freed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1323 if (! XAllocColor (dpy, cmap, &color))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1324 abort (); /* it must be allocable since we're just duplicating it */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1325
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 8
diff changeset
1326 symbols [i].name = (char *) XSTRING_DATA (XCAR (cons));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1327 symbols [i].pixel = color.pixel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1328 symbols [i].value = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1329 free_cons (XCONS (cons));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1330 cons = results;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1331 results = XCDR (results);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1332 free_cons (XCONS (cons));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1333 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1334 return symbols;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1335 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1336
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1337 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1338 xpm_free (XpmAttributes *xpmattrs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1339 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1340 /* Could conceivably lose if XpmXXX returned an error without first
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1341 initializing this structure, if we didn't know that initializing it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1342 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
1343 multiple times, since it zeros slots as it frees them...) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1344 XpmFreeAttributes (xpmattrs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1345 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1346
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1347 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1348 xpm_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1349 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
1350 int dest_mask, Lisp_Object domain)
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 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1353 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1354 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1355 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1356 Display *dpy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1357 Screen *xs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1358 Pixmap pixmap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1359 Pixmap mask = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1360 XpmAttributes xpmattrs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1361 int result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1362 XpmColorSymbol *color_symbols;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1363 Lisp_Object color_symbol_alist = find_keyword_in_vector (instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1364 Q_color_symbols);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1365 enum image_instance_type type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1366 int force_mono;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1367 unsigned int w, h;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1368
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1369 if (!DEVICE_X_P (XDEVICE (device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1370 signal_simple_error ("Not an X device", device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1371
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1372 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1373 xs = DefaultScreenOfDisplay (dpy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1374
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1375 if (dest_mask & IMAGE_COLOR_PIXMAP_MASK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1376 type = IMAGE_COLOR_PIXMAP;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1377 else if (dest_mask & IMAGE_MONO_PIXMAP_MASK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1378 type = IMAGE_MONO_PIXMAP;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1379 else if (dest_mask & IMAGE_POINTER_MASK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1380 type = IMAGE_POINTER;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1381 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1382 incompatible_image_types (instantiator, dest_mask,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1383 IMAGE_MONO_PIXMAP_MASK | IMAGE_COLOR_PIXMAP_MASK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1384 | IMAGE_POINTER_MASK);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1385 force_mono = (type != IMAGE_COLOR_PIXMAP);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1386
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1387 x_initialize_pixmap_image_instance (ii, type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1388
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1389 assert (!NILP (data));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1390
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1391 retry:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1392
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1393 memset (&xpmattrs, 0, sizeof (xpmattrs)); /* want XpmInitAttributes() */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1394 xpmattrs.valuemask = XpmReturnPixels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1395 if (force_mono)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1396 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1397 /* Without this, we get a 1-bit version of the color image, which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1398 isn't quite right. With this, we get the mono image, which might
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1399 be very different looking. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1400 xpmattrs.valuemask |= XpmColorKey;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1401 xpmattrs.color_key = XPM_MONO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1402 xpmattrs.depth = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1403 xpmattrs.valuemask |= XpmDepth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1404 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1405 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1406 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1407 xpmattrs.closeness = 65535;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1408 xpmattrs.valuemask |= XpmCloseness;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1409 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1410
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
1411 color_symbols = extract_xpm_color_names (&xpmattrs, device, domain,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1412 color_symbol_alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1413
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1414 result = XpmCreatePixmapFromBuffer (dpy,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1415 RootWindowOfScreen (xs),
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 8
diff changeset
1416 (char *) XSTRING_DATA (data),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1417 &pixmap, &mask, &xpmattrs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1418
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1419 if (color_symbols)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1420 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1421 xfree (color_symbols);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1422 xpmattrs.colorsymbols = 0; /* in case XpmFreeAttr is too smart... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1423 xpmattrs.numsymbols = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1424 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1425
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1426 switch (result)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1427 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1428 case XpmSuccess:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1429 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1430 case XpmFileInvalid:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1431 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1432 xpm_free (&xpmattrs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1433 signal_simple_error ("invalid XPM data", data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1434 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1435 case XpmColorFailed:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1436 case XpmColorError:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1437 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1438 xpm_free (&xpmattrs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1439 if (force_mono)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1440 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1441 /* second time; blow out. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1442 signal_double_file_error ("Reading pixmap data",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1443 "color allocation failed",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1444 data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1445 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1446 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1447 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1448 if (! (dest_mask & IMAGE_MONO_PIXMAP_MASK))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1449 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1450 /* second time; blow out. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1451 signal_double_file_error ("Reading pixmap data",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1452 "color allocation failed",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1453 data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1454 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1455 force_mono = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1456 IMAGE_INSTANCE_TYPE (ii) = IMAGE_MONO_PIXMAP;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1457 goto retry;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1458 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1459 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1460 case XpmNoMemory:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1461 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1462 xpm_free (&xpmattrs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1463 signal_double_file_error ("Parsing pixmap data",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464 "out of memory", data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1465 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1466 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1467 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1468 xpm_free (&xpmattrs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1469 signal_double_file_error_2 ("Parsing pixmap data",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1470 "unknown error code",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1471 make_int (result), data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1472 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1473 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1474
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1475 w = xpmattrs.width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1476 h = xpmattrs.height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1477
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1478 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1479 int npixels = xpmattrs.npixels;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1480 Pixel *pixels;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1481
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1482 if (npixels != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1483 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1484 pixels = xnew_array (Pixel, npixels);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1485 memcpy (pixels, xpmattrs.pixels, npixels * sizeof (Pixel));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1486 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1487 else
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1488 pixels = NULL;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1489
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1490 IMAGE_INSTANCE_X_PIXMAP (ii) = pixmap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1491 IMAGE_INSTANCE_X_MASK (ii) = mask;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1492 IMAGE_INSTANCE_X_PIXELS (ii) = pixels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1493 IMAGE_INSTANCE_X_NPIXELS (ii) = npixels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1494 IMAGE_INSTANCE_PIXMAP_WIDTH (ii) = w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1495 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii) = h;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1496 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1497 find_keyword_in_vector (instantiator, Q_file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1498 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1499
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1500 switch (type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1501 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1502 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1503 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1504
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1505 case IMAGE_COLOR_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1506 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1507 /* XpmReadFileToPixmap() doesn't return the depth (bogus!) so
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1508 we need to get it ourself. (No, xpmattrs.depth is not it;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1509 that's an input slot, not output.) We could just assume
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1510 that it has the same depth as the root window, but some
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1511 devices allow more than one depth, so that isn't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1512 necessarily correct (I guess?) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1513 Window root;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1514 int x, y;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1515 unsigned int w2, h2, bw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1516
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1517 unsigned int d;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1518
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1519 if (!XGetGeometry (dpy, pixmap, &root, &x, &y, &w2, &h2, &bw, &d))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1520 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1521 if (w != w2 || h != h2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1522 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1523
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1524 IMAGE_INSTANCE_PIXMAP_DEPTH (ii) = d;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1525 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1526 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1527
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1528 case IMAGE_POINTER:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1529 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1530 int npixels = xpmattrs.npixels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1531 Pixel *pixels = xpmattrs.pixels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1532 XColor fg, bg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1533 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1534 int xhot = 0, yhot = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1535
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1536 if (xpmattrs.valuemask & XpmHotspot)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1537 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1538 xhot = xpmattrs.x_hotspot;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1539 XSETINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii), xpmattrs.x_hotspot);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1540 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1541 if (xpmattrs.valuemask & XpmHotspot)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1542 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1543 yhot = xpmattrs.y_hotspot;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1544 XSETINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii), xpmattrs.y_hotspot);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1545 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1546 check_pointer_sizes (xs, w, h, instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1547
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1548 /* If the loaded pixmap has colors allocated (meaning it came from an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1549 XPM file), then use those as the default colors for the cursor we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1550 create. Otherwise, default to pointer_fg and pointer_bg.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1551 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1552 if (npixels >= 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1553 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1554 /* With an XBM file, it's obvious which bit is foreground
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1555 and which is background, or rather, it's implicit: in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1556 an XBM file, a 1 bit is foreground, and a 0 bit is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1557 background.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1558
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1559 XCreatePixmapCursor() assumes this property of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1560 pixmap it is called with as well; the `foreground'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1561 color argument is used for the 1 bits.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1562
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1563 With an XPM file, it's tricker, since the elements of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1564 the pixmap don't represent FG and BG, but are actual
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1565 pixel values. So we need to figure out which of those
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1566 pixels is the foreground color and which is the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1567 background. We do it by comparing RGB and assuming
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1568 that the darker color is the foreground. This works
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1569 with the result of xbmtopbm|ppmtoxpm, at least.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1570
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1571 It might be nice if there was some way to tag the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1572 colors in the XPM file with whether they are the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1573 foreground - perhaps with logical color names somehow?
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1574
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1575 Once we have decided which color is the foreground, we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1576 need to ensure that that color corresponds to a `1' bit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1577 in the Pixmap. The XPM library wrote into the (1-bit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1578 pixmap with XPutPixel, which will ignore all but the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1579 least significant bit.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1580
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1581 This means that a 1 bit in the image corresponds to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1582 `fg' only if `fg.pixel' is odd.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1583
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1584 (This also means that the image will be all the same
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1585 color if both `fg' and `bg' are odd or even, but we can
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1586 safely assume that that won't happen if the XPM file is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1587 sensible I think.)
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1588
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1589 The desired result is that the image use `1' to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1590 represent the foreground color, and `0' to represent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1591 the background color. So, we may need to invert the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1592 image to accomplish this; we invert if fg is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1593 odd. (Remember that WhitePixel and BlackPixel are not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1594 necessarily 1 and 0 respectively, though I think it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1595 might be safe to assume that one of them is always 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1596 and the other is always 0. We also pretty much need to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1597 assume that one is even and the other is odd.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1598 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1599
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1600 fg.pixel = pixels[0]; /* pick a pixel at random. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1601 bg.pixel = fg.pixel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1602 for (i = 1; i < npixels; i++) /* Look for an "other" pixel value.*/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1603 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1604 bg.pixel = pixels[i];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1605 if (fg.pixel != bg.pixel)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1606 break;
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 /* If (fg.pixel == bg.pixel) then probably something has
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1610 gone wrong, but I don't think signalling an error would
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1611 be appropriate. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1612
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1613 XQueryColor (dpy, DefaultColormapOfScreen (xs), &fg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1614 XQueryColor (dpy, DefaultColormapOfScreen (xs), &bg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1615
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1616 /* If the foreground is lighter than the background, swap them.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1617 (This occurs semi-randomly, depending on the ordering of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1618 color list in the XPM file.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1619 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1620 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1621 unsigned short fg_total = ((fg.red / 3) + (fg.green / 3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1622 + (fg.blue / 3));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1623 unsigned short bg_total = ((bg.red / 3) + (bg.green / 3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1624 + (bg.blue / 3));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1625 if (fg_total > bg_total)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1626 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1627 XColor swap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1628 swap = fg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1629 fg = bg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1630 bg = swap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1631 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1632 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1633
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1634 /* If the fg pixel corresponds to a `0' in the bitmap, invert it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1635 (This occurs (only?) on servers with Black=0, White=1.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1636 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1637 if ((fg.pixel & 1) == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1638 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1639 XGCValues gcv;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1640 GC gc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1641 gcv.function = GXxor;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1642 gcv.foreground = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1643 gc = XCreateGC (dpy, pixmap, (GCFunction | GCForeground),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1644 &gcv);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1645 XFillRectangle (dpy, pixmap, gc, 0, 0, w, h);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1646 XFreeGC (dpy, gc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1647 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1648 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1649 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1650 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1651 generate_cursor_fg_bg (device, &pointer_fg, &pointer_bg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1652 &fg, &bg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1653 IMAGE_INSTANCE_PIXMAP_FG (ii) = pointer_fg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1654 IMAGE_INSTANCE_PIXMAP_BG (ii) = pointer_bg;
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 IMAGE_INSTANCE_X_CURSOR (ii) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1658 XCreatePixmapCursor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1659 (dpy, pixmap, mask, &fg, &bg, xhot, yhot);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1660 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1661
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1662 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1663
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1664 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1665 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1666 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1667
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1668 xpm_free (&xpmattrs); /* after we've read pixels and hotspot */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1669 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1670
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1671 #endif /* HAVE_XPM */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1672
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1673
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1674 #ifdef HAVE_IMAGEMAGICK
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1675 /**********************************************************************
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1676 * ImageMagick *
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1677 **********************************************************************/
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1678 static void
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1679 imagick_validate (Lisp_Object instantiator)
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1680 {
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1681 file_or_data_must_be_present (instantiator);
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1682 }
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1683
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1684 static Lisp_Object
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1685 imagick_normalize (Lisp_Object inst, Lisp_Object console_type)
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1686 {
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1687 return simple_image_type_normalize (inst, console_type, Qimagick);
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1688 }
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1689
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1690 static int
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1691 imagick_possible_dest_types (void)
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1692 {
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1693 return IMAGE_COLOR_PIXMAP_MASK;
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1694 }
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1695
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1696 struct imagick_unwind_data
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1697 {
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1698 /* FIXME - what goes here...*/
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1699 Display *dpy;
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1700 FILE *instream;
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1701 Image *image;
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1702 XImage *ximage;
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1703 unsigned long *pixels;
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1704 unsigned long npixels;
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1705 char tempfile[50];
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1706 int tempfile_needs_to_be_removed;
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1707 };
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1708
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1709 static Lisp_Object
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1710 imagick_instantiate_unwind (Lisp_Object unwind_obj)
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1711 {
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1712 struct imagick_unwind_data *data =
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1713 (struct imagick_unwind_data *) get_opaque_ptr (unwind_obj);
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1714
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1715 free_opaque_ptr (unwind_obj);
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1716 if (data->instream)
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1717 fclose (data->instream);
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1718 if (data->tempfile_needs_to_be_removed)
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1719 unlink (data->tempfile);
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1720
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1721 if (data->image) {
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1722 DestroyImage(data->image);
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1723 }
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1724
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1725 if (data->ximage)
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1726 {
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1727 if (data->ximage->data)
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1728 {
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1729 xfree (data->ximage->data);
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1730 data->ximage->data = NULL;
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1731 }
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1732 XDestroyImage (data->ximage);
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1733 }
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1734
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1735 return Qnil;
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1736 }
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1737
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1738 static void XDitherImage(Image *image,XImage *ximage);
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1739
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1740 static void
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1741 imagick_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1742 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1743 int dest_mask, Lisp_Object domain)
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1744 {
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1745 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1746 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1747 Display *dpy;
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1748 Screen *scr;
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1749 Dimension depth;
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1750 struct imagick_unwind_data unwind;
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1751 int speccount = specpdl_depth ();
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1752 ImageInfo image_info;
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1753
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1754 /* ImageMagick variables */
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1755
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1756 /* Basic error checking */
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1757 if (!DEVICE_X_P (XDEVICE (device)))
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1758 signal_simple_error ("Not an X device", device);
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1759
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1760 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1761 scr = DefaultScreenOfDisplay (dpy);
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1762 depth = DefaultDepthOfScreen (scr);
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1763 /* Set up the unwind */
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1764 memset (&unwind, 0, sizeof (unwind));
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1765 unwind.dpy = dpy;
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1766 record_unwind_protect(imagick_instantiate_unwind,make_opaque_ptr(&unwind));
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1767
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1768 /* Write out to a temp file - not sure if ImageMagick supports the
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1769 ** notion of an abstrat 'data source' right now.
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1770 */
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1771 {
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1772 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1773
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1774 assert (!NILP (data));
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1775
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1776 write_lisp_string_to_temp_file (data, unwind.tempfile);
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1777 unwind.tempfile_needs_to_be_removed = 1;
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1778
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1779 if ((unwind.instream = fopen (unwind.tempfile, "rb")) == NULL)
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1780 report_file_error ("Opening ImageMagick temp file",
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1781 list1 (build_string (unwind.tempfile)));
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1782 }
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1783
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1784 /* Initialize structures and read in the image */
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1785 GetImageInfo(&image_info);
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1786 strcpy(image_info.filename,unwind.tempfile);
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1787 unwind.image = ReadImage(&image_info);
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1788 if (unwind.image == (Image *) NULL) {
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1789 signal_simple_error ("Unable to read image.",instantiator);
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1790 }
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1791
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1792 unwind.ximage = XCreateImage(dpy, DefaultVisualOfScreen (scr),
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1793 depth,
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1794 (depth == 1) ? XYPixmap : ZPixmap,
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1795 0, 0,
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1796 unwind.image->columns,
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1797 unwind.image->rows,
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1798 XBitmapPad(dpy), 0);
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1799
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1800 if (!unwind.ximage) {
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1801 signal_simple_error("Unable to allocate XImage structure",
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1802 instantiator);
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1803 }
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1804
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1805 unwind.ximage->data = (char *) xmalloc(unwind.ximage->bytes_per_line *
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1806 unwind.ximage->height *
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1807 unwind.ximage->depth);
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1808
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1809 if (unwind.ximage->data == (char *)NULL) {
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1810 signal_simple_error("Unable to allocate pixel information",
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1811 instantiator);
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1812 }
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1813
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1814 /* Need to pull the data from the 'Image' structure in
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1815 ** unwind.image and convert it to an 'XImage' in unwind.ximage
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1816 **
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1817 ** FIXME IM FUCKED
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1818 **
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1819 ** WMP 10/30/97
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1820 */
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1821
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1822 init_image_instance_from_x_image (ii, unwind.ximage, dest_mask,
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1823 unwind.pixels, unwind.npixels,
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1824 instantiator);
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1825 }
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1826
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1827 #endif /* HAVE_IMAGEMAGICK */
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1828
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
1829
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1830 #ifdef HAVE_XFACE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1831
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1832 /**********************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1833 * X-Face *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1834 **********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1835
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1836 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1837 xface_validate (Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1838 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1839 file_or_data_must_be_present (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1840 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1841
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1842 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1843 xface_normalize (Lisp_Object inst, Lisp_Object console_type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1844 {
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
1845 /* This funcation can call lisp */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1846 Lisp_Object file = Qnil, mask_file = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1847 struct gcpro gcpro1, gcpro2, gcpro3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1848 Lisp_Object alist = Qnil;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1849
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1850 GCPRO3 (file, mask_file, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1851
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1852 /* Now, convert any file data into inline data for both the regular
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1853 data and the mask data. At the end of this, `data' will contain
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1854 the inline data (if any) or Qnil, and `file' will contain
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1855 the name this data was derived from (if known) or Qnil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1856 Likewise for `mask_file' and `mask_data'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1857
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1858 Note that if we cannot generate any regular inline data, we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1859 skip out. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1860
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1861 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1862 mask_file = potential_pixmap_file_instantiator (inst, Q_mask_file,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1863 Q_mask_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1864
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1865 if (CONSP (file)) /* failure locating filename */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1866 signal_double_file_error ("Opening bitmap file",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1867 "no such file or directory",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1868 Fcar (file));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1869
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1870 if (NILP (file) && NILP (mask_file)) /* no conversion necessary */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1871 RETURN_UNGCPRO (inst);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1872
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1873 alist = tagged_vector_to_alist (inst);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1874
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1875 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1876 Lisp_Object data = make_string_from_file (file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1877 alist = remassq_no_quit (Q_file, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1878 /* there can't be a :data at this point. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1879 alist = Fcons (Fcons (Q_file, file),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1880 Fcons (Fcons (Q_data, data), alist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1881 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1882
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1883 alist = xbm_mask_file_munging (alist, file, mask_file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1884
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1885 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1886 Lisp_Object result = alist_to_tagged_vector (Qxface, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1887 free_alist (alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1888 RETURN_UNGCPRO (result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1889 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1890 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1891
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1892 static int
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1893 xface_possible_dest_types (void)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1894 {
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1895 return
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1896 IMAGE_MONO_PIXMAP_MASK |
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1897 IMAGE_COLOR_PIXMAP_MASK |
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1898 IMAGE_POINTER_MASK;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1899 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1900
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1901 #if defined(EXTERN)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1902 /* This is about to get redefined! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1903 #undef EXTERN
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1904 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1905 /* We have to define SYSV32 so that compface.h includes string.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1906 instead of strings.h. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1907 #define SYSV32
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1908 #ifdef __cplusplus
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1909 extern "C" {
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1910 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1911 #include <compface.h>
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1912 #ifdef __cplusplus
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1913 }
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1914 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1915 /* JMP_BUF cannot be used here because if it doesn't get defined
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1916 to jmp_buf we end up with a conflicting type error with the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1917 definition in compface.h */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1918 extern jmp_buf comp_env;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1919 #undef SYSV32
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1920
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1921 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1922 xface_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1923 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
1924 int dest_mask, Lisp_Object domain)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1925 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1926 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1927 int i, stattis;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1928 char *p, *bits, *bp;
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1929 CONST char * volatile emsg = 0;
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1930 CONST char * volatile dstring;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1931
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1932 assert (!NILP (data));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1933
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1934 GET_C_STRING_BINARY_DATA_ALLOCA (data, dstring);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1935
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1936 if ((p = strchr (dstring, ':')))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1937 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1938 dstring = p + 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1939 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1940
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1941 /* 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
1942 if (!(stattis = setjmp (comp_env)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1943 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1944 UnCompAll ((char *) dstring);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1945 UnGenFace ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1946 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1947
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1948 switch (stattis)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1949 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1950 case -2:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1951 emsg = "uncompface: internal error";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1952 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1953 case -1:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1954 emsg = "uncompface: insufficient or invalid data";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1955 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1956 case 1:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1957 emsg = "uncompface: excess data ignored";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1958 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1959 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1960
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1961 if (emsg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1962 signal_simple_error_2 (emsg, data, Qimage);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1963
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1964 bp = bits = (char *) alloca (PIXELS / 8);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1965
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1966 /* the compface library exports char F[], which uses a single byte per
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1967 pixel to represent a 48x48 bitmap. Yuck. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1968 for (i = 0, p = F; i < (PIXELS / 8); ++i)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1969 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1970 int n, b;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1971 /* reverse the bit order of each byte... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1972 for (b = n = 0; b < 8; ++b)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1973 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1974 n |= ((*p++) << b);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1975 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1976 *bp++ = (char) n;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1977 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1978
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1979 xbm_instantiate_1 (image_instance, instantiator, pointer_fg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1980 pointer_bg, dest_mask, 48, 48, bits);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1981 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1982
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1983 #endif /* HAVE_XFACE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1984
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1985
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1986 /**********************************************************************
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
1987 * Autodetect *
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1988 **********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1989
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1990 static void
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
1991 autodetect_validate (Lisp_Object instantiator)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1992 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1993 data_must_be_present (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1994 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1995
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1996 static Lisp_Object
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
1997 autodetect_normalize (Lisp_Object instantiator,
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 116
diff changeset
1998 Lisp_Object console_type)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1999 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2000 Lisp_Object file = find_keyword_in_vector (instantiator, Q_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2001 Lisp_Object filename = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2002 Lisp_Object data = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2003 struct gcpro gcpro1, gcpro2, gcpro3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2004 Lisp_Object alist = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2005
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2006 GCPRO3 (filename, data, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2007
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2008 if (NILP (file)) /* no conversion necessary */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2009 RETURN_UNGCPRO (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2010
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2011 alist = tagged_vector_to_alist (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2012
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2013 filename = locate_pixmap_file (file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2014 if (!NILP (filename))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2015 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2016 int xhot, yhot;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2017 /* #### Apparently some versions of XpmReadFileToData, which is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2018 called by pixmap_to_lisp_data, don't return an error value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2019 if the given file is not a valid XPM file. Instead, they
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2020 just seg fault. It is definitely caused by passing a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2021 bitmap. To try and avoid this we check for bitmaps first. */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2022
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2023 data = bitmap_to_lisp_data (filename, &xhot, &yhot, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2024
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2025 if (!EQ (data, Qt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2026 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2027 alist = remassq_no_quit (Q_data, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2028 alist = Fcons (Fcons (Q_file, filename),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2029 Fcons (Fcons (Q_data, data), alist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2030 if (xhot != -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2031 alist = Fcons (Fcons (Q_hotspot_x, make_int (xhot)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2032 alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2033 if (yhot != -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2034 alist = Fcons (Fcons (Q_hotspot_y, make_int (yhot)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2035 alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2036
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2037 alist = xbm_mask_file_munging (alist, filename, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2038
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2039 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2040 Lisp_Object result = alist_to_tagged_vector (Qxbm, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2041 free_alist (alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2042 RETURN_UNGCPRO (result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2043 }
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 #ifdef HAVE_XPM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2047 data = pixmap_to_lisp_data (filename, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2048
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2049 if (!EQ (data, Qt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2050 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2051 alist = remassq_no_quit (Q_data, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2052 alist = Fcons (Fcons (Q_file, filename),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2053 Fcons (Fcons (Q_data, data), alist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2054 alist = Fcons (Fcons (Q_color_symbols,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2055 evaluate_xpm_color_symbols ()),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2056 alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2057 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2058 Lisp_Object result = alist_to_tagged_vector (Qxpm, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2059 free_alist (alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2060 RETURN_UNGCPRO (result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2061 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2062 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2063 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2064 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2065
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2066 /* If we couldn't convert it, just put it back as it is.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2067 We might try to further frob it later as a cursor-font
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2068 specification. (We can't do that now because we don't know
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2069 what dest-types it's going to be instantiated into.) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2070 {
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
2071 Lisp_Object result = alist_to_tagged_vector (Qautodetect, alist);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2072 free_alist (alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2073 RETURN_UNGCPRO (result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2074 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2075 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2076
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2077 static int
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
2078 autodetect_possible_dest_types (void)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2079 {
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
2080 return
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
2081 IMAGE_MONO_PIXMAP_MASK |
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
2082 IMAGE_COLOR_PIXMAP_MASK |
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
2083 IMAGE_POINTER_MASK |
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
2084 IMAGE_TEXT_MASK;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2085 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2086
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2087 static void
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
2088 autodetect_instantiate (Lisp_Object image_instance,
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 116
diff changeset
2089 Lisp_Object instantiator,
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 116
diff changeset
2090 Lisp_Object pointer_fg,
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 116
diff changeset
2091 Lisp_Object pointer_bg,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
2092 int dest_mask, Lisp_Object domain)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2093 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2094 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2095 struct gcpro gcpro1, gcpro2, gcpro3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2096 Lisp_Object alist = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2097 Lisp_Object result = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2098 int is_cursor_font = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2099
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2100 GCPRO3 (data, alist, result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2102 alist = tagged_vector_to_alist (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2103 if (dest_mask & IMAGE_POINTER_MASK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2104 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2105 CONST char *name_ext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2106 GET_C_STRING_FILENAME_DATA_ALLOCA (data, name_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2107 if (XmuCursorNameToIndex (name_ext) != -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2108 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2109 result = alist_to_tagged_vector (Qcursor_font, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2110 is_cursor_font = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2111 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2112 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2113
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2114 if (!is_cursor_font)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2115 result = alist_to_tagged_vector (Qstring, alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2116 free_alist (alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2117
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2118 if (is_cursor_font)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2119 cursor_font_instantiate (image_instance, result, pointer_fg,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
2120 pointer_bg, dest_mask, domain);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2121 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2122 string_instantiate (image_instance, result, pointer_fg,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
2123 pointer_bg, dest_mask, domain);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2124
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2125 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2126 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2127
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2128
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2129 /**********************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2130 * Font *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2131 **********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2132
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2133 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2134 font_validate (Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2135 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2136 data_must_be_present (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2137 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2138
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2139 /* XmuCvtStringToCursor is bogus in the following ways:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2140
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2141 - 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
2142 sometimes return a "success" value, after triggering a BadPixmap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2143 error. It then gives you a cursor that will itself generate BadCursor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2144 errors. So we install this error handler to catch/notice the X error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2145 and take that as meaning "couldn't convert."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2146
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2147 - 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
2148 an error message on stderr. You can't make it not do that.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2149
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2150 - Also, using Xmu means we can't properly hack Lisp_Image_Instance
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2151 objects, or XPM files, or $XBMLANGPATH.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2152 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2153
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2154 /* Duplicate the behavior of XmuCvtStringToCursor() to bypass its bogusness. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2155
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2156 static int XLoadFont_got_error;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2157
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2158 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2159 XLoadFont_error_handler (Display *dpy, XErrorEvent *xerror)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2160 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2161 XLoadFont_got_error = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2162 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2163 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2164
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2165 static Font
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2166 safe_XLoadFont (Display *dpy, char *name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2167 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2168 Font font;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2169 int (*old_handler) (Display *, XErrorEvent *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2170 XLoadFont_got_error = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2171 XSync (dpy, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2172 old_handler = XSetErrorHandler (XLoadFont_error_handler);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2173 font = XLoadFont (dpy, name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2174 XSync (dpy, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2175 XSetErrorHandler (old_handler);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2176 if (XLoadFont_got_error) return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2177 return font;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2178 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2179
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2180 static int
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
2181 font_possible_dest_types (void)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2182 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2183 return IMAGE_POINTER_MASK;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2184 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2185
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2186 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2187 font_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2188 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
2189 int dest_mask, Lisp_Object domain)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2190 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2191 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2192 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2193 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2194 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2195 Display *dpy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2196 XColor fg, bg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2197 Font source, mask;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2198 char source_name[MAXPATHLEN], mask_name[MAXPATHLEN], dummy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2199 int source_char, mask_char;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2200 int count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2201 Lisp_Object foreground, background;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2202
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2203 if (!DEVICE_X_P (XDEVICE (device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2204 signal_simple_error ("Not an X device", device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2205
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2206 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2207
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2208 if (!STRINGP (data) ||
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 8
diff changeset
2209 strncmp ("FONT ", (char *) XSTRING_DATA (data), 5))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2210 signal_simple_error ("Invalid font-glyph instantiator",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2211 instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2212
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2213 if (!(dest_mask & IMAGE_POINTER_MASK))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2214 incompatible_image_types (instantiator, dest_mask, IMAGE_POINTER_MASK);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2215
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2216 foreground = find_keyword_in_vector (instantiator, Q_foreground);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2217 if (NILP (foreground))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2218 foreground = pointer_fg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2219 background = find_keyword_in_vector (instantiator, Q_background);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2220 if (NILP (background))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2221 background = pointer_bg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2222
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2223 generate_cursor_fg_bg (device, &foreground, &background, &fg, &bg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2224
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 8
diff changeset
2225 count = sscanf ((char *) XSTRING_DATA (data),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2226 "FONT %s %d %s %d %c",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2227 source_name, &source_char,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2228 mask_name, &mask_char, &dummy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2229 /* Allow "%s %d %d" as well... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2230 if (count == 3 && (1 == sscanf (mask_name, "%d %c", &mask_char, &dummy)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2231 count = 4, mask_name[0] = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2232
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2233 if (count != 2 && count != 4)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2234 signal_simple_error ("invalid cursor specification", data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2235 source = safe_XLoadFont (dpy, source_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2236 if (! source)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2237 signal_simple_error_2 ("couldn't load font",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2238 build_string (source_name),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2239 data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2240 if (count == 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2241 mask = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2242 else if (!mask_name[0])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2243 mask = source;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2244 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2245 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2246 mask = safe_XLoadFont (dpy, mask_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2247 if (!mask)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2248 /* continuable */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2249 Fsignal (Qerror, list3 (build_string ("couldn't load font"),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2250 build_string (mask_name), data));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2251 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2252 if (!mask)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2253 mask_char = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2254
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2255 /* #### call XQueryTextExtents() and check_pointer_sizes() here. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2256
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2257 x_initialize_pixmap_image_instance (ii, IMAGE_POINTER);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2258 IMAGE_INSTANCE_X_CURSOR (ii) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2259 XCreateGlyphCursor (dpy, source, mask, source_char, mask_char,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2260 &fg, &bg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2261 XIMAGE_INSTANCE_PIXMAP_FG (image_instance) = foreground;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2262 XIMAGE_INSTANCE_PIXMAP_BG (image_instance) = background;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2263 XUnloadFont (dpy, source);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2264 if (mask && mask != source) XUnloadFont (dpy, mask);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2265 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2266
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2267
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2268 /**********************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2269 * Cursor-Font *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2270 **********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2271
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2272 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2273 cursor_font_validate (Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2274 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2275 data_must_be_present (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2276 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2277
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2278 static int
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
2279 cursor_font_possible_dest_types (void)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2280 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2281 return IMAGE_POINTER_MASK;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2282 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2283
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2284 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2285 cursor_font_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2286 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
2287 int dest_mask, Lisp_Object domain)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2288 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2289 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2290 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2291 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2292 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2293 Display *dpy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2294 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2295 CONST char *name_ext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2296 Lisp_Object foreground, background;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2297
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2298 if (!DEVICE_X_P (XDEVICE (device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2299 signal_simple_error ("Not an X device", device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2300
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2301 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2302
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2303 if (!(dest_mask & IMAGE_POINTER_MASK))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2304 incompatible_image_types (instantiator, dest_mask, IMAGE_POINTER_MASK);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2305
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2306 GET_C_STRING_FILENAME_DATA_ALLOCA (data, name_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2307 if ((i = XmuCursorNameToIndex (name_ext)) == -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2308 signal_simple_error ("Unrecognized cursor-font name", data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2309
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2310 x_initialize_pixmap_image_instance (ii, IMAGE_POINTER);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2311 IMAGE_INSTANCE_X_CURSOR (ii) = XCreateFontCursor (dpy, i);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2312 foreground = find_keyword_in_vector (instantiator, Q_foreground);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2313 if (NILP (foreground))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2314 foreground = pointer_fg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2315 background = find_keyword_in_vector (instantiator, Q_background);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2316 if (NILP (background))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2317 background = pointer_bg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2318 maybe_recolor_cursor (image_instance, foreground, background);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2319 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2320
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2321 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2322 x_colorize_image_instance (Lisp_Object image_instance,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2323 Lisp_Object foreground, Lisp_Object background)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2324 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2325 struct Lisp_Image_Instance *p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2326
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2327 p = XIMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2328
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2329 switch (IMAGE_INSTANCE_TYPE (p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2330 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2331 case IMAGE_MONO_PIXMAP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2332 IMAGE_INSTANCE_TYPE (p) = IMAGE_COLOR_PIXMAP;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2333 /* Make sure there aren't two pointers to the same mask, causing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2334 it to get freed twice. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2335 IMAGE_INSTANCE_X_MASK (p) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2336 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2337
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2338 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2339 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2340 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2341
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2342 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2343 Display *dpy = DEVICE_X_DISPLAY (XDEVICE (IMAGE_INSTANCE_DEVICE (p)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2344 Screen *scr = DefaultScreenOfDisplay (dpy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2345 Dimension d = DefaultDepthOfScreen (scr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2346 Pixmap new = XCreatePixmap (dpy, RootWindowOfScreen (scr),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2347 IMAGE_INSTANCE_PIXMAP_WIDTH (p),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2348 IMAGE_INSTANCE_PIXMAP_HEIGHT (p), d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2349 XColor color;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2350 XGCValues gcv;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2351 GC gc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2352 color = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (foreground));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2353 gcv.foreground = color.pixel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2354 color = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (background));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2355 gcv.background = color.pixel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2356 gc = XCreateGC (dpy, new, GCBackground|GCForeground, &gcv);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2357 XCopyPlane (dpy, IMAGE_INSTANCE_X_PIXMAP (p), new, gc, 0, 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2358 IMAGE_INSTANCE_PIXMAP_WIDTH (p),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2359 IMAGE_INSTANCE_PIXMAP_HEIGHT (p),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2360 0, 0, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2361 XFreeGC (dpy, gc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2362 IMAGE_INSTANCE_X_PIXMAP (p) = new;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2363 IMAGE_INSTANCE_PIXMAP_DEPTH (p) = d;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2364 IMAGE_INSTANCE_PIXMAP_FG (p) = foreground;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2365 IMAGE_INSTANCE_PIXMAP_BG (p) = background;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2366 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2367 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2368 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2369
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2370
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
2371 #if HAVE_SUBWINDOWS
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2372 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2373 /* subwindows */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2374 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2375
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2376 Lisp_Object Qsubwindowp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2377 static Lisp_Object mark_subwindow (Lisp_Object, void (*) (Lisp_Object));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2378 static void print_subwindow (Lisp_Object, Lisp_Object, int);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2379 static void finalize_subwindow (void *, int);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2380 static int subwindow_equal (Lisp_Object o1, Lisp_Object o2, int depth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2381 static unsigned long subwindow_hash (Lisp_Object obj, int depth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2382 DEFINE_LRECORD_IMPLEMENTATION ("subwindow", subwindow,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2383 mark_subwindow, print_subwindow,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2384 finalize_subwindow, subwindow_equal,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2385 subwindow_hash, struct Lisp_Subwindow);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2386
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2387 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2388 mark_subwindow (Lisp_Object obj, void (*markobj) (Lisp_Object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2389 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2390 struct Lisp_Subwindow *sw = XSUBWINDOW (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2391 return sw->frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2392 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2393
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2394 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2395 print_subwindow (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2396 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2397 char buf[100];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2398 struct Lisp_Subwindow *sw = XSUBWINDOW (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2399 struct frame *frm = XFRAME (sw->frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2400
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2401 if (print_readably)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2402 error ("printing unreadable object #<subwindow 0x%x>",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2403 sw->header.uid);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2404
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2405 write_c_string ("#<subwindow", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2406 sprintf (buf, " %dx%d", sw->width, sw->height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2407 write_c_string (buf, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2408
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2409 /* This is stolen from frame.c. Subwindows are strange in that they
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2410 are specific to a particular frame so we want to print in their
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2411 description what that frame is. */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2412
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2413 write_c_string (" on #<", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2414 if (!FRAME_LIVE_P (frm))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2415 write_c_string ("dead", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2416 else if (FRAME_TTY_P (frm))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2417 write_c_string ("tty", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2418 else if (FRAME_X_P (frm))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2419 write_c_string ("x", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2420 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2421 write_c_string ("UNKNOWN", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2422 write_c_string ("-frame ", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2423 print_internal (frm->name, printcharfun, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2424 sprintf (buf, " 0x%x>", frm->header.uid);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2425 write_c_string (buf, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2426
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2427 sprintf (buf, ") 0x%x>", sw->header.uid);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2428 write_c_string (buf, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2429 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2430
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2431 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2432 finalize_subwindow (void *header, int for_disksave)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2433 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2434 struct Lisp_Subwindow *sw = (struct Lisp_Subwindow *) header;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2435 if (for_disksave) finalose (sw);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2436 if (sw->subwindow)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2437 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2438 XDestroyWindow (DisplayOfScreen (sw->xscreen), sw->subwindow);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2439 sw->subwindow = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2440 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2441 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2442
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2443 /* subwindows are equal iff they have the same window XID */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2444 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2445 subwindow_equal (Lisp_Object o1, Lisp_Object o2, int depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2446 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2447 return (XSUBWINDOW (o1)->subwindow == XSUBWINDOW (o2)->subwindow);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2448 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2449
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2450 static unsigned long
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2451 subwindow_hash (Lisp_Object obj, int depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2452 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2453 return XSUBWINDOW (obj)->subwindow;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2454 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2455
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2456 /* #### PROBLEM: The display routines assume that the glyph is only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2457 being displayed in one buffer. If it is in two different buffers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2458 which are both being displayed simultaneously you will lose big time.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2459 This can be dealt with in the new redisplay. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2460
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 60
diff changeset
2461 /* #### These are completely un-re-implemented in 19.14. Get it done
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 60
diff changeset
2462 for 19.15. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2463
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2464 DEFUN ("make-subwindow", Fmake_subwindow, 0, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2465 Creates a new `subwindow' object of size WIDTH x HEIGHT.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2466 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
2467 window size. Subwindows are per-frame. A buffer being shown in two
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2468 different frames will only display a subwindow glyph in the frame in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2469 which it was actually created. If two windows on the same frame are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2470 displaying the buffer then the most recently used window will actually
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2471 display the window. If the frame is not specified, the selected frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2472 is used.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2473
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2474 Subwindows are not currently implemented.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2475 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2476 (width, height, frame))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2477 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2478 Display *dpy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2479 Screen *xs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2480 Window pw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2481 struct frame *f;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2482 unsigned int iw, ih;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2483 XSetWindowAttributes xswa;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2484 Mask valueMask = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2485
140
585fb297b004 Import from CVS: tag r20-2b4
cvs
parents: 138
diff changeset
2486 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
2487
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2488 f = decode_x_frame (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2489
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2490 xs = LISP_DEVICE_TO_X_SCREEN (FRAME_DEVICE (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2491 dpy = DisplayOfScreen (xs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2492 pw = XtWindow (FRAME_X_TEXT_WIDGET (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2493
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2494 if (NILP (width))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2495 iw = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2496 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2497 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2498 CHECK_INT (width);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2499 iw = XINT (width);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2500 if (iw < 1) iw = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2501 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2502 if (NILP (height))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2503 ih = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2504 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2505 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2506 CHECK_INT (height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2507 ih = XINT (height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2508 if (ih < 1) ih = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2509 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2510
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2511 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2512 struct Lisp_Subwindow *sw =
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2513 alloc_lcrecord_type (struct Lisp_Subwindow, lrecord_subwindow);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2514 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2515 sw->frame = frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2516 sw->xscreen = xs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2517 sw->parent_window = pw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2518 sw->height = ih;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2519 sw->width = iw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2520
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2521 xswa.backing_store = Always;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2522 valueMask |= CWBackingStore;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2523
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2524 xswa.colormap = DefaultColormapOfScreen (xs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2525 valueMask |= CWColormap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2526
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2527 sw->subwindow = XCreateWindow (dpy, pw, 0, 0, iw, ih, 0, CopyFromParent,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2528 InputOutput, CopyFromParent, valueMask,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2529 &xswa);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2530
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2531 XSETSUBWINDOW (val, sw);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2532 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2533 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2534 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2535
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2536 /* #### Should this function exist? */
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2537 DEFUN ("change-subwindow-property", Fchange_subwindow_property, 3, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2538 For the given SUBWINDOW, set PROPERTY to DATA, which is a string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2539 Subwindows are not currently implemented.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2540 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2541 (subwindow, property, data))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2542 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2543 Atom property_atom;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2544 struct Lisp_Subwindow *sw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2545 Display *dpy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2546
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2547 CHECK_SUBWINDOW (subwindow);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2548 CHECK_STRING (property);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2549 CHECK_STRING (data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2550
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2551 sw = XSUBWINDOW (subwindow);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2552 dpy = DisplayOfScreen (LISP_DEVICE_TO_X_SCREEN
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2553 (FRAME_DEVICE (XFRAME (sw->frame))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2554
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
2555 property_atom = XInternAtom (dpy, (char *) XSTRING_DATA (property), False);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2556 XChangeProperty (dpy, sw->subwindow, property_atom, XA_STRING, 8,
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
2557 PropModeReplace,
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
2558 XSTRING_DATA (data),
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 8
diff changeset
2559 XSTRING_LENGTH (data));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2560
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2561 return (property);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2562 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2563
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2564 DEFUN ("subwindowp", Fsubwindowp, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2565 Return non-nil if OBJECT is a subwindow.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2566 Subwindows are not currently implemented.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2567 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2568 (object))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2569 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2570 return (SUBWINDOWP (object) ? Qt : Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2571 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2572
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2573 DEFUN ("subwindow-width", Fsubwindow_width, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2574 Width of SUBWINDOW.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2575 Subwindows are not currently implemented.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2576 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2577 (subwindow))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2578 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2579 CHECK_SUBWINDOW (subwindow);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2580 return (make_int (XSUBWINDOW (subwindow)->width));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2581 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2582
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2583 DEFUN ("subwindow-height", Fsubwindow_height, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2584 Height of SUBWINDOW.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2585 Subwindows are not currently implemented.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2586 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2587 (subwindow))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2588 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2589 CHECK_SUBWINDOW (subwindow);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2590 return (make_int (XSUBWINDOW (subwindow)->height));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2591 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2592
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2593 DEFUN ("subwindow-xid", Fsubwindow_xid, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2594 Return the xid of SUBWINDOW as a number.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2595 Subwindows are not currently implemented.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2596 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2597 (subwindow))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2598 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2599 CHECK_SUBWINDOW (subwindow);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2600 return (make_int (XSUBWINDOW (subwindow)->subwindow));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2601 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2602
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2603 DEFUN ("resize-subwindow", Fresize_subwindow, 1, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2604 Resize SUBWINDOW to WIDTH x HEIGHT.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2605 If a value is nil that parameter is not changed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2606 Subwindows are not currently implemented.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2607 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2608 (subwindow, width, height))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2609 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2610 int neww, newh;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2611 struct Lisp_Subwindow *sw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2612
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2613 CHECK_SUBWINDOW (subwindow);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2614 sw = XSUBWINDOW (subwindow);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2615
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2616 if (NILP (width))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2617 neww = sw->width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2618 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2619 neww = XINT (width);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2620
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2621 if (NILP (height))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2622 newh = sw->height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2623 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2624 newh = XINT (height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2625
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2626 XResizeWindow (DisplayOfScreen (sw->xscreen), sw->subwindow, neww, newh);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2627
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2628 sw->height = newh;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2629 sw->width = neww;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2630
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2631 return subwindow;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2632 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2633
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2634 DEFUN ("force-subwindow-map", Fforce_subwindow_map, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2635 Generate a Map event for SUBWINDOW.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2636 Subwindows are not currently implemented.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2637 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2638 (subwindow))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2639 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2640 CHECK_SUBWINDOW (subwindow);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2641
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2642 XMapWindow (DisplayOfScreen (XSUBWINDOW (subwindow)->xscreen),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2643 XSUBWINDOW (subwindow)->subwindow);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2644
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2645 return subwindow;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2646 }
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
2647 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2648
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2649 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2650 /* initialization */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2651 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2652
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2653 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2654 syms_of_glyphs_x (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2655 {
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
2656 #if HAVE_SUBWINDOWS
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2657 defsymbol (&Qsubwindowp, "subwindowp");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2658
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2659 DEFSUBR (Fmake_subwindow);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2660 DEFSUBR (Fchange_subwindow_property);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2661 DEFSUBR (Fsubwindowp);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2662 DEFSUBR (Fsubwindow_width);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2663 DEFSUBR (Fsubwindow_height);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2664 DEFSUBR (Fsubwindow_xid);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2665 DEFSUBR (Fresize_subwindow);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2666 DEFSUBR (Fforce_subwindow_map);
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
2667 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2668
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2669 defkeyword (&Q_mask_file, ":mask-file");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2670 defkeyword (&Q_mask_data, ":mask-data");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2671 defkeyword (&Q_hotspot_x, ":hotspot-x");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2672 defkeyword (&Q_hotspot_y, ":hotspot-y");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2673 defkeyword (&Q_foreground, ":foreground");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2674 defkeyword (&Q_background, ":background");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2675
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2676 #ifdef HAVE_XPM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2677 defkeyword (&Q_color_symbols, ":color-symbols");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2678 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2679 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2680
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2681 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2682 console_type_create_glyphs_x (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2683 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2684 /* image methods */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2685
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2686 CONSOLE_HAS_METHOD (x, print_image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2687 CONSOLE_HAS_METHOD (x, finalize_image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2688 CONSOLE_HAS_METHOD (x, image_instance_equal);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2689 CONSOLE_HAS_METHOD (x, image_instance_hash);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2690 CONSOLE_HAS_METHOD (x, colorize_image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2691 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2692
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2693 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2694 image_instantiator_format_create_glyphs_x (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2695 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2696 /* image-instantiator types */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2697
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2698 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (xbm, "xbm");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2699
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2700 IIFORMAT_HAS_METHOD (xbm, validate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2701 IIFORMAT_HAS_METHOD (xbm, normalize);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2702 IIFORMAT_HAS_METHOD (xbm, possible_dest_types);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2703 IIFORMAT_HAS_METHOD (xbm, instantiate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2704
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2705 IIFORMAT_VALID_KEYWORD (xbm, Q_data, check_valid_xbm_inline);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2706 IIFORMAT_VALID_KEYWORD (xbm, Q_file, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2707 IIFORMAT_VALID_KEYWORD (xbm, Q_mask_data, check_valid_xbm_inline);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2708 IIFORMAT_VALID_KEYWORD (xbm, Q_mask_file, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2709 IIFORMAT_VALID_KEYWORD (xbm, Q_hotspot_x, check_valid_int);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2710 IIFORMAT_VALID_KEYWORD (xbm, Q_hotspot_y, check_valid_int);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2711 IIFORMAT_VALID_KEYWORD (xbm, Q_foreground, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2712 IIFORMAT_VALID_KEYWORD (xbm, Q_background, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2713
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2714 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (cursor_font, "cursor-font");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2715
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2716 IIFORMAT_HAS_METHOD (cursor_font, validate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2717 IIFORMAT_HAS_METHOD (cursor_font, possible_dest_types);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2718 IIFORMAT_HAS_METHOD (cursor_font, instantiate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2719
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2720 IIFORMAT_VALID_KEYWORD (cursor_font, Q_data, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2721 IIFORMAT_VALID_KEYWORD (cursor_font, Q_foreground, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2722 IIFORMAT_VALID_KEYWORD (cursor_font, Q_background, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2723
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2724 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (font, "font");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2725
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2726 IIFORMAT_HAS_METHOD (font, validate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2727 IIFORMAT_HAS_METHOD (font, possible_dest_types);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2728 IIFORMAT_HAS_METHOD (font, instantiate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2729
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2730 IIFORMAT_VALID_KEYWORD (font, Q_data, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2731 IIFORMAT_VALID_KEYWORD (font, Q_foreground, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2732 IIFORMAT_VALID_KEYWORD (font, Q_background, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2733
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
2734 #ifdef HAVE_IMAGEMAGICK
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
2735 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (imagick, "imagick");
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
2736
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
2737 IIFORMAT_HAS_METHOD (imagick, validate);
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
2738 IIFORMAT_HAS_METHOD (imagick, normalize);
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
2739 IIFORMAT_HAS_METHOD (imagick, possible_dest_types);
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
2740 IIFORMAT_HAS_METHOD (imagick, instantiate);
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
2741
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
2742 IIFORMAT_VALID_KEYWORD (imagick, Q_data, check_valid_string);
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
2743 IIFORMAT_VALID_KEYWORD (imagick, Q_file, check_valid_string);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2744 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2745
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2746 #ifdef HAVE_XPM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2747 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (xpm, "xpm");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2748
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2749 IIFORMAT_HAS_METHOD (xpm, validate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2750 IIFORMAT_HAS_METHOD (xpm, normalize);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2751 IIFORMAT_HAS_METHOD (xpm, possible_dest_types);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2752 IIFORMAT_HAS_METHOD (xpm, instantiate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2753
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2754 IIFORMAT_VALID_KEYWORD (xpm, Q_data, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2755 IIFORMAT_VALID_KEYWORD (xpm, Q_file, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2756 IIFORMAT_VALID_KEYWORD (xpm, Q_color_symbols, check_valid_xpm_color_symbols);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2757 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2758
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2759 #ifdef HAVE_XFACE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2760 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (xface, "xface");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2761
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2762 IIFORMAT_HAS_METHOD (xface, validate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2763 IIFORMAT_HAS_METHOD (xface, normalize);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2764 IIFORMAT_HAS_METHOD (xface, possible_dest_types);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2765 IIFORMAT_HAS_METHOD (xface, instantiate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2766
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2767 IIFORMAT_VALID_KEYWORD (xface, Q_data, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2768 IIFORMAT_VALID_KEYWORD (xface, Q_file, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2769 IIFORMAT_VALID_KEYWORD (xface, Q_hotspot_x, check_valid_int);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2770 IIFORMAT_VALID_KEYWORD (xface, Q_hotspot_y, check_valid_int);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2771 IIFORMAT_VALID_KEYWORD (xface, Q_foreground, check_valid_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2772 IIFORMAT_VALID_KEYWORD (xface, Q_background, check_valid_string);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2773 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2774
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
2775 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (autodetect,
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
2776 "autodetect");
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
2777
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
2778 IIFORMAT_HAS_METHOD (autodetect, validate);
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
2779 IIFORMAT_HAS_METHOD (autodetect, normalize);
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
2780 IIFORMAT_HAS_METHOD (autodetect, possible_dest_types);
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
2781 IIFORMAT_HAS_METHOD (autodetect, instantiate);
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
2782
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
2783 IIFORMAT_VALID_KEYWORD (autodetect, Q_data, check_valid_string);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2784 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2785
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2786 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2787 vars_of_glyphs_x (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2788 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2789 #ifdef HAVE_XPM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2790 Fprovide (Qxpm);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2791
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2792 DEFVAR_LISP ("xpm-color-symbols", &Vxpm_color_symbols /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2793 Definitions of logical color-names used when reading XPM files.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2794 Elements of this list should be of the form (COLOR-NAME FORM-TO-EVALUATE).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2795 The COLOR-NAME should be a string, which is the name of the color to define;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2796 the FORM should evaluate to a `color' specifier object, or a string to be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2797 passed to `make-color-instance'. If a loaded XPM file references a symbolic
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2798 color called COLOR-NAME, it will display as the computed color instead.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2799
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2800 The default value of this variable defines the logical color names
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2801 \"foreground\" and \"background\" to be the colors of the `default' face.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2802 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2803 Vxpm_color_symbols = Qnil; /* initialized in x-faces.el */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2804 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2805
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
2806 #ifdef HAVE_IMAGEMAGICK
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
2807 Fprovide (Qimagick);
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
2808 #endif
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 199
diff changeset
2809
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2810 #ifdef HAVE_XFACE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2811 Fprovide (Qxface);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2812 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2813
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2814 DEFVAR_LISP ("x-bitmap-file-path", &Vx_bitmap_file_path /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2815 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
2816 If nil, this is initialized from the "*bitmapFilePath" resource.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2817 This is used by the `make-image-instance' function (however, note that if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2818 the environment variable XBMLANGPATH is set, it is consulted first).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2819 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2820 Vx_bitmap_file_path = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2821 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2822
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2823 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2824 complex_vars_of_glyphs_x (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2825 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2826 #define BUILD_GLYPH_INST(variable, name) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2827 Fadd_spec_to_specifier \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2828 (GLYPH_IMAGE (XGLYPH (variable)), \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2829 vector3 (Qxbm, Q_data, \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2830 list3 (make_int (name##_width), \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2831 make_int (name##_height), \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2832 make_ext_string (name##_bits, \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2833 sizeof (name##_bits), \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2834 FORMAT_BINARY))), \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2835 Qglobal, Qx, Qnil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2836
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2837 BUILD_GLYPH_INST (Vtruncation_glyph, truncator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2838 BUILD_GLYPH_INST (Vcontinuation_glyph, continuer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2839 BUILD_GLYPH_INST (Vxemacs_logo, xemacs);
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
2840 BUILD_GLYPH_INST (Vhscroll_glyph, hscroll);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2841
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2842 #undef BUILD_GLYPH_INST
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2843 }