annotate src/objects-x.c @ 335:54f7aa390f4f r21-0-65

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