annotate src/glyphs-x.c @ 408:501cfd01ee6d r21-2-34

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