annotate src/objects-x.c @ 219:262b8bb4a523 r20-4b8

Import from CVS: tag r20-4b8
author cvs
date Mon, 13 Aug 2007 10:09:35 +0200
parents 3d6bfa290dbd
children b2472a1930f2
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, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 /* Synched up with: Not in FSF. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 /* Authors: Jamie Zawinski, Chuck Thompson, Ben Wing */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 #include <config.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 #include "lisp.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 #include "console-x.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 #include "objects-x.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 #include "buffer.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 #include "device.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 #include "insdel.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 int handle_nonfull_spec_fonts;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 /* color instances */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 /* Replacement for XAllocColor() that tries to return the nearest
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
47 available color if the colormap is full. Original was from FSFmacs,
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
48 but rewritten by Jareth Hein <jareth@camelot-soft.com> 97/11/25 */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
50 /* Return value is 1 for normal success, 2 for nearest color success,
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
51 3 for Non-deallocable sucess, and 0 for absolute failure (shouldn't
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
52 happen?) */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 int
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
54 allocate_nearest_color (Display *display, Colormap colormap, Visual *visual,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 XColor *color_def)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 int status;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
59 if (visual->class == DirectColor || visual->class == TrueColor)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 {
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
61 if (XAllocColor (display, colormap, color_def) != 0)
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
62 {
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
63 status = 1;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
64 }
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
65 else
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
66 {
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
67 /* We're dealing with a TrueColor/DirectColor visual, so play games
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
68 with the RGB values in the XColor struct. */
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
69 /* ### JH: I'm not sure how a call to XAllocColor can fail in a
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
70 TrueColor or DirectColor visual, so I will just reformat the
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
71 request to match the requirements of the visual, and re-issue
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
72 the request. If this fails for anybody, I wanna know about it
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
73 so I can come up with a better plan */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
75 unsigned long rshift,gshift,bshift,rbits,gbits,bbits,junk;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
76 junk = visual->red_mask;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
77 rshift = 0;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
78 while ((junk & 0x1) == 0) {
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
79 junk = junk >> 1;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
80 rshift ++;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
81 }
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
82 rbits = 0;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
83 while (junk != 0) {
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
84 junk = junk >> 1;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
85 rbits++;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
86 }
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
87 junk = visual->green_mask;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
88 gshift = 0;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
89 while ((junk & 0x1) == 0) {
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
90 junk = junk >> 1;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
91 gshift ++;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
92 }
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
93 gbits = 0;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
94 while (junk != 0) {
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
95 junk = junk >> 1;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
96 gbits++;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
97 }
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
98 junk = visual->blue_mask;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
99 bshift = 0;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
100 while ((junk & 0x1) == 0) {
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
101 junk = junk >> 1;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
102 bshift ++;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
103 }
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
104 bbits = 0;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
105 while (junk != 0) {
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
106 junk = junk >> 1;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
107 bbits++;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
108 }
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
109
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
110 color_def->red = color_def->red >> (16 - rbits);
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
111 color_def->green = color_def->green >> (16 - gbits);
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
112 color_def->blue = color_def->blue >> (16 - bbits);
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
113 if (XAllocColor (display, colormap, color_def) != 0)
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
114 status = 1;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
115 else
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
116 {
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
117 /* ### JH: I'm punting here, knowing that doing this will at
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
118 least draw the color correctly. However, unless we convert
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
119 all of the functions that allocate colors (graphics
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
120 libraries, etc) to use this function doing this is very
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
121 likely to cause problems later... */
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
122 color_def->pixel = (color_def->red << rshift) | (color_def->green << gshift) |
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
123 (color_def->blue << bshift);
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
124 status = 3;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 }
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
128 else
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
129 {
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
130 if (XAllocColor (display, colormap, color_def) != 0)
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
131 status = 1;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
132 else
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
133 {
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
134 /* If we got to this point, the colormap is full, so we're
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
135 going to try and get the next closest color. The algorithm used
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
136 is a least-squares matching, which is what X uses for closest
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
137 color matching with StaticColor visuals. */
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
138 XColor *cells;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
139 /* JH: I can't believe there's no way to go backwards from a
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
140 colormap ID and get its visual and number of entries, but X
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
141 apparently isn't built that way... */
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
142 int no_cells = visual->map_entries;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
143 int nearest;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
144 long nearest_delta, trial_delta;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
145 int x;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
147 cells = alloca_array (XColor, no_cells);
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
148
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
149 for (x = 0; x < no_cells; x++)
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
150 cells[x].pixel = x;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
151
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
152 /* read the current colormap */
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
153 XQueryColors (display, colormap, cells, no_cells);
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
154 nearest = 0;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
155 /* I'm assuming CSE so I'm not going to condense this. */
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
156 nearest_delta = ((((color_def->red >> 8) - (cells[0].red >> 8))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
157 * ((color_def->red >> 8) - (cells[0].red >> 8)))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
158 +
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
159 (((color_def->green >> 8) - (cells[0].green >> 8))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
160 * ((color_def->green >> 8) - (cells[0].green >> 8)))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
161 +
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
162 (((color_def->blue >> 8) - (cells[0].blue >> 8))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
163 * ((color_def->blue >> 8) - (cells[0].blue >> 8))));
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
164 for (x = 1; x < no_cells; x++)
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
165 {
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
166 trial_delta = ((((color_def->red >> 8) - (cells[x].red >> 8))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
167 * ((color_def->red >> 8) - (cells[x].red >> 8)))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
168 +
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
169 (((color_def->green >> 8) - (cells[x].green >> 8))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
170 * ((color_def->green >> 8) - (cells[x].green >> 8)))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
171 +
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
172 (((color_def->blue >> 8) - (cells[x].blue >> 8))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
173 * ((color_def->blue >> 8) - (cells[x].blue >> 8))));
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
174 if (trial_delta < nearest_delta)
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
175 {
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
176 nearest = x;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
177 nearest_delta = trial_delta;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
178 }
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
179 }
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
180 color_def->red = cells[nearest].red;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
181 color_def->green = cells[nearest].green;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
182 color_def->blue = cells[nearest].blue;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
183 if (XAllocColor (display, colormap, color_def) != 0)
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
184 status = 2;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
185 else
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
186 status = 0; /* JH: how does this happen??? DOES this happen??? */
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
187 }
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
188 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 return status;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 x_parse_nearest_color (struct device *d, XColor *color, Bufbyte *name,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 Bytecount len, Error_behavior errb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 Display *dpy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 Screen *xs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 Colormap cmap;
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
199 Visual *visual;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 int result;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
201
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 dpy = DEVICE_X_DISPLAY (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 xs = DefaultScreenOfDisplay (dpy);
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
204 cmap = DEVICE_X_COLORMAP(d);
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
205 visual = DEVICE_X_VISUAL (d);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
206
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 memset (color, 0, sizeof (*color));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 CONST Extbyte *extname;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 Extcount extnamelen;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 GET_CHARPTR_EXT_BINARY_DATA_ALLOCA (name, len, extname, extnamelen);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 result = XParseColor (dpy, cmap, (char *) extname, color);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 if (!result)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 maybe_signal_simple_error ("unrecognized color", make_string (name, len),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 Qcolor, errb);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 }
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
221 result = allocate_nearest_color (dpy, cmap, visual, color);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 if (!result)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 maybe_signal_simple_error ("couldn't allocate color",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 make_string (name, len), Qcolor, errb);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
229 return result;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 x_initialize_color_instance (struct Lisp_Color_Instance *c, Lisp_Object name,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 Lisp_Object device, Error_behavior errb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 XColor color;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 int result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 result = x_parse_nearest_color (XDEVICE (device), &color,
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 2
diff changeset
240 XSTRING_DATA (name),
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 2
diff changeset
241 XSTRING_LENGTH (name),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 errb);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 if (!result)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 /* Don't allocate the data until we're sure that we will succeed,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 or the finalize method may get fucked. */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
249 c->data = xnew (struct x_color_instance_data);
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
250 if (result == 3)
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
251 COLOR_INSTANCE_X_DEALLOC (c) = 0;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
252 else
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
253 COLOR_INSTANCE_X_DEALLOC (c) = 1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 COLOR_INSTANCE_X_COLOR (c) = color;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 x_print_color_instance (struct Lisp_Color_Instance *c,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 Lisp_Object printcharfun,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 int escapeflag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 char buf[100];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 XColor color = COLOR_INSTANCE_X_COLOR (c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 sprintf (buf, " %ld=(%X,%X,%X)",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 color.pixel, color.red, color.green, color.blue);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 write_c_string (buf, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 x_finalize_color_instance (struct Lisp_Color_Instance *c)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 if (c->data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 if (DEVICE_LIVE_P (XDEVICE (c->device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 {
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
277 if (COLOR_INSTANCE_X_DEALLOC (c))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
278 {
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
279 XFreeColors (DEVICE_X_DISPLAY (XDEVICE (c->device)), DEVICE_X_COLORMAP (XDEVICE (c->device)),
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
280 &COLOR_INSTANCE_X_COLOR (c).pixel, 1, 0);
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
281 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 xfree (c->data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 c->data = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 /* Color instances are equal if they resolve to the same color on the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 screen (have the same RGB values). I imagine that
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
290 "same RGB values" == "same cell in the colormap." Arguably we should
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
291 be comparing their names or pixel values instead. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 x_color_instance_equal (struct Lisp_Color_Instance *c1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 struct Lisp_Color_Instance *c2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 int depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 XColor color1 = COLOR_INSTANCE_X_COLOR (c1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 XColor color2 = COLOR_INSTANCE_X_COLOR (c2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 return ((color1.red == color2.red) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 (color1.green == color2.green) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 (color1.blue == color2.blue));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 static unsigned long
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 x_color_instance_hash (struct Lisp_Color_Instance *c, int depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 XColor color = COLOR_INSTANCE_X_COLOR (c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 return HASH3 (color.red, color.green, color.blue);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 x_color_instance_rgb_components (struct Lisp_Color_Instance *c)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 XColor color = COLOR_INSTANCE_X_COLOR (c);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
316 return (list3 (make_int (color.red),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 make_int (color.green),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 make_int (color.blue)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 x_valid_color_name_p (struct device *d, Lisp_Object color)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 XColor c;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 Display *dpy = DEVICE_X_DISPLAY (d);
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
326 Colormap cmap = DEVICE_X_COLORMAP (d);
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
327
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 CONST char *extname;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
329
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 GET_C_STRING_CTEXT_DATA_ALLOCA (color, extname);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
332 return XParseColor (dpy, cmap,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 extname, &c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 /* font instances */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 x_initialize_font_instance (struct Lisp_Font_Instance *f, Lisp_Object name,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 Lisp_Object device, Error_behavior errb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 Display *dpy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 XFontStruct *xf;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 CONST char *extname;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
348
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 dpy = DEVICE_X_DISPLAY (XDEVICE (device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 GET_C_STRING_CTEXT_DATA_ALLOCA (f->name, extname);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 xf = XLoadQueryFont (dpy, extname);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
352
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 if (!xf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 maybe_signal_simple_error ("couldn't load font", f->name,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 Qfont, errb);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
359
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 if (!xf->max_bounds.width)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 /* yes, this has been known to happen. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 XFreeFont (dpy, xf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 maybe_signal_simple_error ("X font is too small", f->name,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 Qfont, errb);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
368
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 /* Don't allocate the data until we're sure that we will succeed,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 or the finalize method may get fucked. */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
371 f->data = xnew (struct x_font_instance_data);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 FONT_INSTANCE_X_TRUENAME (f) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 FONT_INSTANCE_X_FONT (f) = xf;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 f->ascent = xf->ascent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 f->descent = xf->descent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 f->height = xf->ascent + xf->descent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 {
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
378 /* following change suggested by Ted Phelps <phelps@dstc.edu.au> */
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
379 unsigned int def_char = 'n'; /*xf->default_char;*/
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 int byte1, byte2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 once_more:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 byte1 = def_char >> 8;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 byte2 = def_char & 0xFF;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 if (xf->per_char)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 /* Old versions of the R5 font server have garbage (>63k) as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 def_char. 'n' might not be a valid character. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 if (byte1 < xf->min_byte1 || byte1 > xf->max_byte1 ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 byte2 < xf->min_char_or_byte2 || byte2 > xf->max_char_or_byte2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 f->width = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 f->width = xf->per_char[(byte1 - xf->min_byte1) *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 (xf->max_char_or_byte2 -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 xf->min_char_or_byte2 + 1) +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 (byte2 - xf->min_char_or_byte2)].width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 f->width = xf->max_bounds.width;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
401
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 /* Some fonts have a default char whose width is 0. This is no good.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 If that's the case, first try 'n' as the default char, and if n has
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 0 width too (unlikely) then just use the max width. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 if (f->width == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 {
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
407 if (def_char == xf->default_char)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 f->width = xf->max_bounds.width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 {
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
411 def_char = xf->default_char;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 goto once_more;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 /* If all characters don't exist then there could potentially be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 0-width characters lurking out there. Not setting this flag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 trips an optimization that would make them appear to have width
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 to redisplay. This is bad. So we set it if not all characters
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 have the same width or if not all characters are defined.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 /* #### This sucks. There is a measurable performance increase
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 when using proportional width fonts if this flag is not set.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 Unfortunately so many of the fucking X fonts are not fully
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 defined that we could almost just get rid of this damn flag and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 make it an assertion. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 f->proportional_p = (xf->min_bounds.width != xf->max_bounds.width ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 (handle_nonfull_spec_fonts &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 !xf->all_chars_exist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 x_mark_font_instance (struct Lisp_Font_Instance *f,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 void (*markobj) (Lisp_Object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 ((markobj) (FONT_INSTANCE_X_TRUENAME (f)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 x_print_font_instance (struct Lisp_Font_Instance *f,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 Lisp_Object printcharfun,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 int escapeflag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 char buf[200];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 sprintf (buf, " 0x%lx", (unsigned long) FONT_INSTANCE_X_FONT (f)->fid);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 write_c_string (buf, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 x_finalize_font_instance (struct Lisp_Font_Instance *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
454
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 if (f->data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 if (DEVICE_LIVE_P (XDEVICE (f->device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 Display *dpy = DEVICE_X_DISPLAY (XDEVICE (f->device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 XFreeFont (dpy, FONT_INSTANCE_X_FONT (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 xfree (f->data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 f->data = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 /* Determining the truename of a font is hard. (Big surprise.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 By "truename" we mean an XLFD-form name which contains no wildcards, yet
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 which resolves to *exactly* the same font as the one which we already have
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 the (probably wildcarded) name and `XFontStruct' of.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 One might think that the first font returned by XListFonts would be the one
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 that XOpenFont would pick. Apparently this is the case on some servers,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 but not on others. It would seem not to be specified.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 The MIT R5 server sometimes appears to be picking the lexicographically
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 smallest font which matches the name (thus picking "adobe" fonts before
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 "bitstream" fonts even if the bitstream fonts are earlier in the path, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 also picking 100dpi adobe fonts over 75dpi adobe fonts even though the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 75dpi are in the path earlier) but sometimes appears to be doing something
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 else entirely (for example, removing the bitsream fonts from the path will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 cause the 75dpi adobe fonts to be used instead of the100dpi, even though
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 their relative positions in the path (and their names!) have not changed).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 The documentation for XSetFontPath() seems to indicate that the order of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 entries in the font path means something, but it's pretty noncommital about
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 it, and the spirit of the law is apparently not being obeyed...
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 All the fonts I've seen have a property named `FONT' which contains the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 truename of the font. However, there are two problems with using this: the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 first is that the X Protocol Document is quite explicit that all properties
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 are optional, so we can't depend on it being there. The second is that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 it's concievable that this alleged truename isn't actually accessible as a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 font, due to some difference of opinion between the font designers and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 whoever installed the font on the system.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 So, our first attempt is to look for a FONT property, and then verify that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 the name there is a valid name by running XListFonts on it. There's still
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 the potential that this could be true but we could still be being lied to,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 but that seems pretty remote.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 Late breaking news: I've gotten reports that SunOS 4.1.3U1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 with OpenWound 3.0 has a font whose truename is really
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 "-Adobe-Courier-Medium-R-Normal--12-120-75-75-M-70-ISO8859-1"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 but whose FONT property contains "Courier".
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 So we disbelieve the FONT property unless it begins with a dash and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 is more than 30 characters long. X Windows: The defacto substandard.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 X Windows: Complex nonsolutions to simple nonproblems. X Windows:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 Live the nightmare.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 If the FONT property doesn't exist, then we try and construct an XLFD name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 out of the other font properties (FOUNDRY, FAMILY_NAME, WEIGHT_NAME, etc).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 This is necessary at least for some versions of OpenWound. But who knows
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 what the future will bring.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 If that doesn't work, then we use XListFonts and either take the first font
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 (which I think is the most sensible thing) or we find the lexicographically
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 least, depending on whether the preprocessor constant `XOPENFONT_SORTS' is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 defined. This sucks because the two behaviors are a property of the server
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 being used, not the architecture on which emacs has been compiled. Also,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 as I described above, sorting isn't ALWAYS what the server does. Really it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 does something seemingly random. There is no reliable way to win if the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 FONT property isn't present.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 Another possibility which I haven't bothered to implement would be to map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 over all of the matching fonts and find the first one that has the same
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 character metrics as the font we already have loaded. Even if this didn't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 return exactly the same font, it would at least return one whose characters
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 were the same sizes, which would probably be good enough.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 More late-breaking news: on RS/6000 AIX 3.2.4, the expression
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 XLoadQueryFont (dpy, "-*-Fixed-Medium-R-*-*-*-130-75-75-*-*-ISO8859-1")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 actually returns the font
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 -Misc-Fixed-Medium-R-Normal--13-120-75-75-C-80-ISO8859-1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 which is crazy, because that font doesn't even match that pattern! It is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 also not included in the output produced by `xlsfonts' with that pattern.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 So this is yet another example of XListFonts() and XOpenFont() using
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 completely different algorithms. This, however, is a goofier example of
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
543 this bug, because in this case, it's not just the search order that is
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 different -- the sets don't even intersect.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 If anyone has any better ideas how to do this, or any insights on what it is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 that the various servers are actually doing, please let me know! -- jwz. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 valid_x_font_name_p (Display *dpy, char *name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 /* Maybe this should be implemented by callign XLoadFont and trapping
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 the error. That would be a lot of work, and wasteful as hell, but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 might be more correct.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 int nnames = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 char **names = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 if (! name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 names = XListFonts (dpy, name, 1, &nnames);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 if (names)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 XFreeFontNames (names);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 return (nnames != 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 static char *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 truename_via_FONT_prop (Display *dpy, XFontStruct *font)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 unsigned long value = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 char *result = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 if (XGetFontProperty (font, XA_FONT, &value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 result = XGetAtomName (dpy, value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 /* result is now 0, or the string value of the FONT property. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 if (result)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 /* Verify that result is an XLFD name (roughly...) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 if (result [0] != '-' || strlen (result) < (unsigned int) 30)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 XFree (result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 result = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 return result; /* this must be freed by caller if non-0 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 static char *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 truename_via_random_props (Display *dpy, XFontStruct *font)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 struct device *d = get_device_from_display (dpy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 unsigned long value = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 char *foundry, *family, *weight, *slant, *setwidth, *add_style;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 unsigned long pixel, point, res_x, res_y;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 char *spacing;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 unsigned long avg_width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 char *registry, *encoding;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 char composed_name [2048];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 int ok = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 char *result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 #define get_string(atom,var) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 if (XGetFontProperty (font, (atom), &value)) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 var = XGetAtomName (dpy, value); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 else { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 var = 0; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 goto FAIL; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 #define get_number(atom,var) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 if (!XGetFontProperty (font, (atom), &var) || \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 var > 999) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 goto FAIL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 foundry = family = weight = slant = setwidth = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 add_style = spacing = registry = encoding = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 get_string (DEVICE_XATOM_FOUNDRY (d), foundry);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 get_string (DEVICE_XATOM_FAMILY_NAME (d), family);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 get_string (DEVICE_XATOM_WEIGHT_NAME (d), weight);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 get_string (DEVICE_XATOM_SLANT (d), slant);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 get_string (DEVICE_XATOM_SETWIDTH_NAME (d), setwidth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 get_string (DEVICE_XATOM_ADD_STYLE_NAME (d), add_style);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 get_number (DEVICE_XATOM_PIXEL_SIZE (d), pixel);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 get_number (DEVICE_XATOM_POINT_SIZE (d), point);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 get_number (DEVICE_XATOM_RESOLUTION_X (d), res_x);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 get_number (DEVICE_XATOM_RESOLUTION_Y (d), res_y);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 get_string (DEVICE_XATOM_SPACING (d), spacing);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 get_number (DEVICE_XATOM_AVERAGE_WIDTH (d), avg_width);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 get_string (DEVICE_XATOM_CHARSET_REGISTRY (d), registry);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 get_string (DEVICE_XATOM_CHARSET_ENCODING (d), encoding);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 #undef get_number
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 #undef get_string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 sprintf (composed_name,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 "-%s-%s-%s-%s-%s-%s-%ld-%ld-%ld-%ld-%s-%ld-%s-%s",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 foundry, family, weight, slant, setwidth, add_style, pixel,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 point, res_x, res_y, spacing, avg_width, registry, encoding);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 ok = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 FAIL:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 if (ok)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 int L = strlen (composed_name) + 1;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
641 result = (char *) xmalloc (L);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 strncpy (result, composed_name, L);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 result = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 if (foundry) XFree (foundry);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 if (family) XFree (family);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 if (weight) XFree (weight);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 if (slant) XFree (slant);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 if (setwidth) XFree (setwidth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 if (add_style) XFree (add_style);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 if (spacing) XFree (spacing);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 if (registry) XFree (registry);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 if (encoding) XFree (encoding);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 /* Unbounded, for sufficiently small values of infinity... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 #define MAX_FONT_COUNT 5000
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 static char *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 truename_via_XListFonts (Display *dpy, char *font_name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 char *result = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 char **names;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 int count = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 #ifndef XOPENFONT_SORTS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 /* In a sensible world, the first font returned by XListFonts()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 would be the font that XOpenFont() would use. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 names = XListFonts (dpy, font_name, 1, &count);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 if (count) result = names [0];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 /* But the world I live in is much more perverse. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 names = XListFonts (dpy, font_name, MAX_FONT_COUNT, &count);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 while (count--)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 /* If names[count] is lexicographically less than result, use it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 (#### Should we be comparing case-insensitively?) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 if (result == 0 || (strcmp (result, names [count]) < 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 result = names [count];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 if (result)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 result = xstrdup (result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 if (names)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 XFreeFontNames (names);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 return result; /* this must be freed by caller if non-0 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 x_font_truename (Display *dpy, char *name, XFontStruct *font)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 char *truename_FONT = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 char *truename_random = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 char *truename = 0;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
699
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 /* The search order is:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 - if FONT property exists, and is a valid name, return it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 - if the other props exist, and add up to a valid name, return it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 - if we find a matching name with XListFonts, return it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 - if FONT property exists, return it regardless.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 - if other props exist, return the resultant name regardless.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 - else return 0.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 truename = truename_FONT = truename_via_FONT_prop (dpy, font);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 if (truename && !valid_x_font_name_p (dpy, truename))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 truename = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 if (!truename)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 truename = truename_random = truename_via_random_props (dpy, font);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 if (truename && !valid_x_font_name_p (dpy, truename))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 truename = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 if (!truename && name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 truename = truename_via_XListFonts (dpy, name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 if (!truename)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 /* Gag - we weren't able to find a seemingly-valid truename.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722 Well, maybe we're on one of those braindead systems where
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 XListFonts() and XLoadFont() are in violent disagreement.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 If we were able to compute a truename, try using that even
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 if evidence suggests that it's not a valid name - because
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 maybe it is, really, and that's better than nothing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 X Windows: You'll envy the dead.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 if (truename_FONT)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 truename = truename_FONT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 else if (truename_random)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 truename = truename_random;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 /* One or both of these are not being used - free them. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 if (truename_FONT && truename_FONT != truename)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 XFree (truename_FONT);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 if (truename_random && truename_random != truename)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 XFree (truename_random);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 if (truename)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 Lisp_Object result = build_string (truename);
100
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 80
diff changeset
744 XFree (truename);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752 x_font_instance_truename (struct Lisp_Font_Instance *f, Error_behavior errb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 struct device *d = XDEVICE (f->device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 if (NILP (FONT_INSTANCE_X_TRUENAME (f)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758 Display *dpy = DEVICE_X_DISPLAY (d);
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 2
diff changeset
759 char *name = (char *) XSTRING_DATA (f->name);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 FONT_INSTANCE_X_TRUENAME (f) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 x_font_truename (dpy, name, FONT_INSTANCE_X_FONT (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 if (NILP (FONT_INSTANCE_X_TRUENAME (f)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 Lisp_Object font_instance = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 XSETFONT_INSTANCE (font_instance, f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 maybe_signal_simple_error ("couldn't determine font truename",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 font_instance, Qfont, errb);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 /* Ok, just this once, return the font name as the truename.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 (This is only used by Fequal() right now.) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 return f->name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 return (FONT_INSTANCE_X_TRUENAME (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780 x_font_instance_properties (struct Lisp_Font_Instance *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782 struct device *d = XDEVICE (f->device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 Lisp_Object result = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 XFontProp *props;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 Display *dpy;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
787
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788 dpy = DEVICE_X_DISPLAY (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 props = FONT_INSTANCE_X_FONT (f)->properties;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 for (i = FONT_INSTANCE_X_FONT (f)->n_properties - 1; i >= 0; i--)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 char *name_str = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 char *val_str = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 Lisp_Object name, value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 Atom atom = props [i].name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 name_str = XGetAtomName (dpy, atom);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 name = (name_str ? intern (name_str) : Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798 if (name_str &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 (atom == XA_FONT ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 atom == DEVICE_XATOM_FOUNDRY (d) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801 atom == DEVICE_XATOM_FAMILY_NAME (d) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 atom == DEVICE_XATOM_WEIGHT_NAME (d) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803 atom == DEVICE_XATOM_SLANT (d) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804 atom == DEVICE_XATOM_SETWIDTH_NAME (d) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 atom == DEVICE_XATOM_ADD_STYLE_NAME (d) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806 atom == DEVICE_XATOM_SPACING (d) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 atom == DEVICE_XATOM_CHARSET_REGISTRY (d) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808 atom == DEVICE_XATOM_CHARSET_ENCODING (d) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 !strcmp (name_str, "CHARSET_COLLECTIONS") ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 !strcmp (name_str, "FONTNAME_REGISTRY") ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 !strcmp (name_str, "CLASSIFICATION") ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 !strcmp (name_str, "COPYRIGHT") ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 !strcmp (name_str, "DEVICE_FONT_NAME") ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814 !strcmp (name_str, "FULL_NAME") ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 !strcmp (name_str, "MONOSPACED") ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 !strcmp (name_str, "QUALITY") ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 !strcmp (name_str, "RELATIVE_SET") ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818 !strcmp (name_str, "RELATIVE_WEIGHT") ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819 !strcmp (name_str, "STYLE")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 val_str = XGetAtomName (dpy, props [i].card32);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 value = (val_str ? build_string (val_str) : Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825 value = make_int (props [i].card32);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 if (name_str) XFree (name_str);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 result = Fcons (Fcons (name, value), result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 x_list_fonts (Lisp_Object pattern, Lisp_Object device)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 char **names;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 int count = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 Lisp_Object result = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838 CONST char *patternext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 GET_C_STRING_BINARY_DATA_ALLOCA (pattern, patternext);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
841
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 names = XListFonts (DEVICE_X_DISPLAY (XDEVICE (device)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 patternext, MAX_FONT_COUNT, &count);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844 while (count--)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845 result = Fcons (build_ext_string (names [count], FORMAT_BINARY), result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 if (names)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 XFreeFontNames (names);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
851 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
852
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
853 static int
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
854 x_font_spec_matches_charset (struct device *d, Lisp_Object charset,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
855 CONST Bufbyte *nonreloc, Lisp_Object reloc,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
856 Bytecount offset, Bytecount length)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
857 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
858 if (UNBOUNDP (charset))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
859 return 1;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
860 /* Hack! Short font names don't have the registry in them,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
861 so we just assume the user knows what they're doing in the
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
862 case of ASCII. For other charsets, you gotta give the
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
863 long form; sorry buster.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
864 */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
865 if (EQ (charset, Vcharset_ascii))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
866 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
867 CONST Bufbyte *the_nonreloc = nonreloc;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
868 int i;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
869 Bytecount the_length = length;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
870
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
871 if (!the_nonreloc)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
872 the_nonreloc = XSTRING_DATA (reloc);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
873 fixup_internal_substring (nonreloc, reloc, offset, &the_length);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
874 the_nonreloc += offset;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
875 if (!memchr (the_nonreloc, '*', the_length))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
876 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
877 for (i = 0;; i++)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
878 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
879 CONST Bufbyte *new_nonreloc = (CONST Bufbyte *)
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
880 memchr (the_nonreloc, '-', the_length);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
881 if (!new_nonreloc)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
882 break;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
883 new_nonreloc++;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
884 the_length -= new_nonreloc - the_nonreloc;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
885 the_nonreloc = new_nonreloc;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
886 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
887
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
888 /* If it has less than 5 dashes, it's a short font.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
889 Of course, long fonts always have 14 dashes or so, but short
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
890 fonts never have more than 1 or 2 dashes, so this is some
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
891 sort of reasonable heuristic. */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
892 if (i < 5)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
893 return 1;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
894 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
895 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
896
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
897 return (fast_string_match (XCHARSET_REGISTRY (charset),
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
898 nonreloc, reloc, offset, length, 1,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
899 ERROR_ME, 0) >= 0);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
900 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
901
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
902 /* find a font spec that matches font spec FONT and also matches
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
903 (the registry of) CHARSET. */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
904 static Lisp_Object
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
905 x_find_charset_font (Lisp_Object device, Lisp_Object font,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
906 Lisp_Object charset)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
907 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
908 char **names;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
909 int count = 0;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
910 Lisp_Object result = Qnil;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
911 CONST char *patternext;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
912 int i;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
913
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
914 GET_C_STRING_BINARY_DATA_ALLOCA (font, patternext);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
915
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
916 names = XListFonts (DEVICE_X_DISPLAY (XDEVICE (device)),
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
917 patternext, MAX_FONT_COUNT, &count);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
918 for (i = 0; i < count; i ++)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
919 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
920 CONST char *intname;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
921
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
922 GET_C_CHARPTR_INT_BINARY_DATA_ALLOCA (names[i], intname);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
923 if (x_font_spec_matches_charset (XDEVICE (device), charset,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
924 (unsigned char *) intname,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
925 Qnil, 0, -1))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
926 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
927 result = build_string (intname);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
928 break;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
929 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
930 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
931
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
932 if (names)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
933 XFreeFontNames (names);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
934
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
935 /* Check for a short font name. */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
936 if (NILP (result)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
937 && x_font_spec_matches_charset (XDEVICE (device), charset, 0,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
938 font, 0, -1))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
939 return font;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
940
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
941 return result;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
942 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
943
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
944 #endif /* MULE */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
945
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948 /* initialization */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952 syms_of_objects_x (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 console_type_create_objects_x (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 /* object methods */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961 CONSOLE_HAS_METHOD (x, initialize_color_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 CONSOLE_HAS_METHOD (x, print_color_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 CONSOLE_HAS_METHOD (x, finalize_color_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 CONSOLE_HAS_METHOD (x, color_instance_equal);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965 CONSOLE_HAS_METHOD (x, color_instance_hash);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 CONSOLE_HAS_METHOD (x, color_instance_rgb_components);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967 CONSOLE_HAS_METHOD (x, valid_color_name_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969 CONSOLE_HAS_METHOD (x, initialize_font_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970 CONSOLE_HAS_METHOD (x, mark_font_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971 CONSOLE_HAS_METHOD (x, print_font_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972 CONSOLE_HAS_METHOD (x, finalize_font_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 CONSOLE_HAS_METHOD (x, font_instance_truename);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974 CONSOLE_HAS_METHOD (x, font_instance_properties);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975 CONSOLE_HAS_METHOD (x, list_fonts);
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
976 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
977 CONSOLE_HAS_METHOD (x, find_charset_font);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
978 CONSOLE_HAS_METHOD (x, font_spec_matches_charset);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 14
diff changeset
979 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983 vars_of_objects_x (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985 DEFVAR_BOOL ("x-handle-non-fully-specified-fonts",&handle_nonfull_spec_fonts /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986 If this is true then fonts which do not have all characters specified
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987 will be considered to be proportional width even if they are actually
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988 fixed-width. If this is not done then characters which are supposed to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 have 0 width may appear to actually have some width.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991 Note: While setting this to t guarantees correct output in all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992 circumstances, it also causes a noticeable performance hit when using
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993 fixed-width fonts. Since most people don't use characters which could
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994 cause problems this is set to nil by default.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996 handle_nonfull_spec_fonts = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
997 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000 Xatoms_of_objects_x (struct device *d)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001 {
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 100
diff changeset
1002 Display *D = DEVICE_X_DISPLAY (d);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
1003
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 100
diff changeset
1004 DEVICE_XATOM_FOUNDRY (d) = XInternAtom (D, "FOUNDRY", False);
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 100
diff changeset
1005 DEVICE_XATOM_FAMILY_NAME (d) = XInternAtom (D, "FAMILY_NAME", False);
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 100
diff changeset
1006 DEVICE_XATOM_WEIGHT_NAME (d) = XInternAtom (D, "WEIGHT_NAME", False);
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 100
diff changeset
1007 DEVICE_XATOM_SLANT (d) = XInternAtom (D, "SLANT", False);
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 100
diff changeset
1008 DEVICE_XATOM_SETWIDTH_NAME (d) = XInternAtom (D, "SETWIDTH_NAME", False);
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 100
diff changeset
1009 DEVICE_XATOM_ADD_STYLE_NAME (d) = XInternAtom (D, "ADD_STYLE_NAME", False);
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 100
diff changeset
1010 DEVICE_XATOM_PIXEL_SIZE (d) = XInternAtom (D, "PIXEL_SIZE", False);
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 100
diff changeset
1011 DEVICE_XATOM_POINT_SIZE (d) = XInternAtom (D, "POINT_SIZE", False);
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 100
diff changeset
1012 DEVICE_XATOM_RESOLUTION_X (d) = XInternAtom (D, "RESOLUTION_X", False);
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 100
diff changeset
1013 DEVICE_XATOM_RESOLUTION_Y (d) = XInternAtom (D, "RESOLUTION_Y", False);
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 100
diff changeset
1014 DEVICE_XATOM_SPACING (d) = XInternAtom (D, "SPACING", False);
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 100
diff changeset
1015 DEVICE_XATOM_AVERAGE_WIDTH (d) = XInternAtom (D, "AVERAGE_WIDTH", False);
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 100
diff changeset
1016 DEVICE_XATOM_CHARSET_REGISTRY(d) = XInternAtom (D, "CHARSET_REGISTRY",False);
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 100
diff changeset
1017 DEVICE_XATOM_CHARSET_ENCODING(d) = XInternAtom (D, "CHARSET_ENCODING",False);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018 }