ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/rxvtfont.C
(Generate patch)

Comparing rxvt-unicode/src/rxvtfont.C (file contents):
Revision 1.4 by root, Mon Aug 16 12:04:57 2004 UTC vs.
Revision 1.64 by root, Tue Jan 11 05:45:57 2005 UTC

19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *---------------------------------------------------------------------*/ 20 *---------------------------------------------------------------------*/
21 21
22#include "../config.h" 22#include "../config.h"
23#include "rxvt.h" 23#include "rxvt.h"
24#include "rxvtutil.h"
24#include "rxvtfont.h" 25#include "rxvtfont.h"
25 26
26#include <cstdlib> 27#include <cstdlib>
28#include <wchar.h>
29#include <inttypes.h>
27 30
28#define DISPLAY r->display->display 31#define DISPLAY r->display->display
29#define TGC r->TermWin.gc 32#define TGC r->TermWin.gc
33
34#define MAX_OVERLAP (4 + 1) // max. character width in 4ths of the base width
30 35
31const struct rxvt_fallback_font { 36const struct rxvt_fallback_font {
32 codeset cs; 37 codeset cs;
33 const char *name; 38 const char *name;
34} fallback_fonts[] = { 39} fallback_fonts[] = {
52 { CS_ISO8859_10, "-*-*-*-r-*--*-*-*-*-c-*-iso8859-10" }, 57 { CS_ISO8859_10, "-*-*-*-r-*--*-*-*-*-c-*-iso8859-10" },
53 { CS_ISO8859_11, "-*-*-*-r-*--*-*-*-*-c-*-iso8859-11" }, 58 { CS_ISO8859_11, "-*-*-*-r-*--*-*-*-*-c-*-iso8859-11" },
54 { CS_ISO8859_13, "-*-*-*-r-*--*-*-*-*-c-*-iso8859-13" }, 59 { CS_ISO8859_13, "-*-*-*-r-*--*-*-*-*-c-*-iso8859-13" },
55 { CS_ISO8859_14, "-*-*-*-r-*--*-*-*-*-c-*-iso8859-14" }, 60 { CS_ISO8859_14, "-*-*-*-r-*--*-*-*-*-c-*-iso8859-14" },
56 { CS_ISO8859_16, "-*-*-*-r-*--*-*-*-*-c-*-iso8859-16" }, 61 { CS_ISO8859_16, "-*-*-*-r-*--*-*-*-*-c-*-iso8859-16" },
62
63# if XFT
64 { CS_KOI8_U, "xft::spacing=100:lang=ru:antialias=false" },
65
66 { CS_ISO8859_5, "xft::spacing=100:lang=ru:antialias=false" },
67 { CS_ISO8859_6, "xft::spacing=100:lang=ar:antialias=false" },
68 { CS_ISO8859_7, "xft::spacing=100:lang=el:antialias=false" },
69 { CS_ISO8859_8, "xft::spacing=100:lang=he:antialias=false" },
70 { CS_ISO8859_9, "xft::spacing=100:lang=tr:antialias=false" },
71 { CS_ISO8859_10, "xft::spacing=100:lang=se:antialias=false" },
72 { CS_ISO8859_11, "xft::spacing=100:lang=th:antialias=false" },
73# endif
57#endif 74#endif
58 75
59 // japanese 76 // japanese
60#if ENCODING_JP || ENCODING_JP_EXT 77#if ENCODING_JP || ENCODING_JP_EXT
61# if XFT 78# if XFT
62 // prefer xft for complex scripts 79 // prefer xft for complex scripts
63 { CS_UNICODE, "xft:Kochi Gothic:antialias=false" }, 80 { CS_JIS0208_1990_0, "xft:Kochi Gothic:antialias=false" },
81 { CS_JIS0208_1990_0, "xft:Sazanami Mincho:antialias=false" },
82 { CS_JIS0208_1990_0, "xft:Mincho:antialias=false" },
83 { CS_JIS0208_1990_0, "xft::lang=ja:spacing=100:antialias=false" },
64# endif 84# endif
65 { CS_JIS0201_1976_0, "-*-mincho-*-r-*--*-*-*-*-c-*-jisx0201*-0" }, 85 { CS_JIS0201_1976_0, "-*-mincho-*-r-*--*-*-*-*-c-*-jisx0201*-0" },
66 { CS_JIS0208_1990_0, "-*-mincho-*-r-*--*-*-*-*-c-*-jisx0208*-0" }, 86 { CS_JIS0208_1990_0, "-*-mincho-*-r-*--*-*-*-*-c-*-jisx0208*-0" },
67 { CS_JIS0212_1990_0, "-*-mincho-*-r-*--*-*-*-*-c-*-jisx0212*-0" }, 87 { CS_JIS0212_1990_0, "-*-mincho-*-r-*--*-*-*-*-c-*-jisx0212*-0" },
68 { CS_JIS0201_1976_0, "-*-*-*-r-*--*-*-*-*-c-*-jisx0201*-0" }, 88 { CS_JIS0201_1976_0, "-*-*-*-r-*--*-*-*-*-c-*-jisx0201*-0" },
69 { CS_JIS0208_1990_0, "-*-*-*-r-*--*-*-*-*-c-*-jisx0208*-0" }, 89 { CS_JIS0208_1990_0, "-*-*-*-r-*--*-*-*-*-c-*-jisx0208*-0" },
70 { CS_JIS0212_1990_0, "-*-*-*-r-*--*-*-*-*-c-*-jisx0212*-0" }, 90 { CS_JIS0212_1990_0, "-*-*-*-r-*--*-*-*-*-c-*-jisx0212*-0" },
71#endif 91#endif
72 92
73#if ENCODING_CN || ENCODING_CN_EXT 93#if ENCODING_ZH || ENCODING_ZH_EXT
74# if XFT 94# if XFT
95 { CS_GBK_0, "xft:AR PL KaitiM GB" },
96 { CS_GBK_0, "xft:AR PL SungtiL GB" },
97 { CS_GBK_0, "xft::spacing=100:lang=zh" },
75 { CS_BIG5_EXT, "xft:AR PL Mingti2L Big5" }, 98 { CS_BIG5_EXT, "xft:AR PL Mingti2L Big5" },
76 { CS_BIG5_EXT, "xft:AR PL KaitiM Big5" }, 99 { CS_BIG5_EXT, "xft:AR PL KaitiM Big5" },
77 { CS_GB2312_1980_0, "xft:AR PL KaitiM GB" }, 100 { CS_GB2312_1980_0, "xft:AR PL KaitiM GB" },
78 { CS_GB2312_1980_0, "xft:AR PL SungtiL GB" }, 101 { CS_GB2312_1980_0, "xft:AR PL SungtiL GB" },
102 { CS_GB2312_1980_0, "xft::spacing=100:lang=zh" },
79# endif 103# endif
104 { CS_GBK_0, "-*-*-*-*-*-*-*-*-*-*-c-*-gbk*-0" },
80 { CS_BIG5, "-*-*-*-*-*-*-*-*-*-*-c-*-big5-0" }, 105 { CS_BIG5, "-*-*-*-*-*-*-*-*-*-*-c-*-big5-0" },
81 { CS_BIG5_PLUS, "-*-*-*-*-*-*-*-*-*-*-c-*-big5p-0" }, 106 { CS_BIG5_PLUS, "-*-*-*-*-*-*-*-*-*-*-c-*-big5p-0" },
82 { CS_BIG5_EXT, "-*-*-*-*-*-*-*-*-*-*-c-*-big5.eten-0" }, 107 { CS_BIG5_EXT, "-*-*-*-*-*-*-*-*-*-*-c-*-big5.eten-0" },
108 { CS_GB2312_1980_0, "-*-*-*-*-*-*-*-*-*-*-c-*-gb2312*-0" },
83 { CS_CNS11643_1992_1, "-*-*-*-*-*-*-*-*-*-*-c-*-gb2312*-0" }, 109 { CS_CNS11643_1992_1, "-*-*-*-*-*-*-*-*-*-*-c-*-gb2312*-0" },
84 { CS_CNS11643_1992_1, "-*-*-*-*-*-*-*-*-*-*-c-*-cns11643*-1" }, 110 { CS_CNS11643_1992_1, "-*-*-*-*-*-*-*-*-*-*-c-*-cns11643*-1" },
85 { CS_CNS11643_1992_2, "-*-*-*-*-*-*-*-*-*-*-c-*-cns11643*-2" }, 111 { CS_CNS11643_1992_2, "-*-*-*-*-*-*-*-*-*-*-c-*-cns11643*-2" },
86 { CS_CNS11643_1992_3, "-*-*-*-*-*-*-*-*-*-*-c-*-cns11643*-3" }, 112 { CS_CNS11643_1992_3, "-*-*-*-*-*-*-*-*-*-*-c-*-cns11643*-3" },
87 { CS_CNS11643_1992_4, "-*-*-*-*-*-*-*-*-*-*-c-*-cns11643*-4" }, 113 { CS_CNS11643_1992_4, "-*-*-*-*-*-*-*-*-*-*-c-*-cns11643*-4" },
89 { CS_CNS11643_1992_6, "-*-*-*-*-*-*-*-*-*-*-c-*-cns11643*-6" }, 115 { CS_CNS11643_1992_6, "-*-*-*-*-*-*-*-*-*-*-c-*-cns11643*-6" },
90 { CS_CNS11643_1992_7, "-*-*-*-*-*-*-*-*-*-*-c-*-cns11643*-7" }, 116 { CS_CNS11643_1992_7, "-*-*-*-*-*-*-*-*-*-*-c-*-cns11643*-7" },
91 { CS_CNS11643_1992_F, "-*-*-*-*-*-*-*-*-*-*-c-*-cns11643*-f" }, 117 { CS_CNS11643_1992_F, "-*-*-*-*-*-*-*-*-*-*-c-*-cns11643*-f" },
92#endif 118#endif
93 119
120#if ENCODING_KR
121 { CS_KSC5601_1987_0, "-baekmuk-gulim-*-*-*-*-*-*-*-*-c-*-ksc5601*" },
122 { CS_KSC5601_1987_0, "-*-*-*-*-*-*-*-*-*-*-c-*-ksc5601*" },
94#if XFT 123# if XFT
95 { CS_UNICODE, "xft:Andale Mono" }, 124 { CS_KSC5601_1987_0, "xft:Baekmuk Gulim:antialias=false" },
96 { CS_UNICODE, "xft:Arial Unicode MS" }, 125 { CS_KSC5601_1987_0, "xft::spacing=100:lang=ko:antialias=false" },
97#endif 126# endif
127#endif
128
129 // generic font fallback
98 { CS_UNICODE, "-*-lucidatypewriter-*-*-*-*-*-*-*-*-m-*-iso10646-1" }, 130 { CS_UNICODE, "-*-lucidatypewriter-*-*-*-*-*-*-*-*-m-*-iso10646-1" },
99 { CS_UNICODE, "-*-unifont-*-*-*-*-*-*-*-*-c-*-iso10646-1" }, 131 { CS_UNICODE, "-*-unifont-*-*-*-*-*-*-*-*-c-*-iso10646-1" },
100 { CS_UNICODE, "-*-*-*-r-*-*-*-*-*-*-c-*-iso10646-1" }, 132 { CS_UNICODE, "-*-*-*-r-*-*-*-*-*-*-c-*-iso10646-1" },
101 { CS_UNICODE, "-*-*-*-r-*-*-*-*-*-*-m-*-iso10646-1" }, 133 { CS_UNICODE, "-*-*-*-r-*-*-*-*-*-*-m-*-iso10646-1" },
102#if XFT 134#if XFT
135 { CS_UNICODE, "xft:Bitstream Vera Sans Mono:antialias=false:autohint=true"},
136 { CS_UNICODE, "xft:Courier New:antialias=false:autohint=true" },
137 { CS_UNICODE, "xft:Andale Mono:antialias=false" },
138 { CS_UNICODE, "xft:Arial Unicode MS:antialias=false" },
139
103 // FreeMono is usually uglier than x fonts, so try last only. 140 // FreeMono is usually uglier than x fonts, so try last only.
104 //{ CS_UNICODE, "xft:FreeMono" }, 141 { CS_UNICODE, "xft:FreeMono:autohint=true" },
105#endif 142#endif
106 143
107 { CS_UNKNOWN, 0 } 144 { CS_UNKNOWN, 0 }
108}; 145};
146
147// these characters are used to guess the font height and width
148// pango uses a similar algorithm and doesn't trust the font either.
149static uint16_t extent_test_chars[] = {
150 '0', '1', '8', 'a', 'd', 'x', 'm', 'y', 'g', 'W', 'X', '\'', '_',
151 0x00cd, 0x00d5, 0x0114, 0x0177, 0x0643, // ÍÕĔŷﻙ
152 0x304c, 0x672c, // が本
153};
154
155#define NUM_EXTENT_TEST_CHARS (sizeof (extent_test_chars) / sizeof (extent_test_chars[0]))
109 156
110///////////////////////////////////////////////////////////////////////////// 157/////////////////////////////////////////////////////////////////////////////
111 158
112#if XFT 159#if XFT
113rxvt_drawable::~rxvt_drawable () 160rxvt_drawable::~rxvt_drawable ()
186 233
187 return (XChar2b *)enc_buf; 234 return (XChar2b *)enc_buf;
188} 235}
189 236
190///////////////////////////////////////////////////////////////////////////// 237/////////////////////////////////////////////////////////////////////////////
238
239void
240rxvt_font::set_name (char *name)
241{
242 if (this->name == name)
243 return;
244
245 if (this->name) free (this->name); // let the compiler optimize
246 this->name = name;
247}
191 248
192void 249void
193rxvt_font::clear_rect (rxvt_drawable &d, int x, int y, int w, int h, int color) 250rxvt_font::clear_rect (rxvt_drawable &d, int x, int y, int w, int h, int color)
194{ 251{
195 if (color == Color_bg) 252 if (color == Color_bg)
206} 263}
207 264
208#include "table/linedraw.h" 265#include "table/linedraw.h"
209 266
210struct rxvt_font_default : rxvt_font { 267struct rxvt_font_default : rxvt_font {
268 struct rxvt_fontset *fs;
269
270 rxvt_font_default (rxvt_fontset *fs)
271 : rxvt_font ()
272 {
273 this->fs = fs;
274 }
211 275
212 rxvt_fontprop properties () 276 rxvt_fontprop properties ()
213 { 277 {
214 rxvt_fontprop p; 278 rxvt_fontprop p;
215 279
223 bool load (const rxvt_fontprop &prop) 287 bool load (const rxvt_fontprop &prop)
224 { 288 {
225 width = 1; height = 1; 289 width = 1; height = 1;
226 ascent = 1; descent = 0; 290 ascent = 1; descent = 0;
227 291
228 set_name (strdup ("built-in pseudofont")); 292 set_name (strdup ("built-in support font"));
229 293
230 return true; 294 return true;
231 } 295 }
232 296
233 bool has_codepoint (unicode_t unicode) 297 bool has_char (unicode_t unicode, const rxvt_fontprop *prop, bool &careful)
234 { 298 {
299 careful = false;
300
235 if (unicode <= 0x001f) 301 if (unicode <= 0x001f)
236 return true; 302 return true;
237 303
238 if (unicode <= 0x007f) 304 if (unicode <= 0x007f)
239 return false; 305 return false;
248 return true; 314 return true;
249 315
250 switch (unicode) 316 switch (unicode)
251 { 317 {
252 case ZERO_WIDTH_CHAR: 318 case ZERO_WIDTH_CHAR:
319 case NOCHAR:
253 return true; 320 return true;
254 } 321 }
255 322
256 return false; 323 return false;
257 } 324 }
268{ 335{
269 clear_rect (d, x, y, r->TermWin.fwidth * len, r->TermWin.fheight, bg); 336 clear_rect (d, x, y, r->TermWin.fwidth * len, r->TermWin.fheight, bg);
270 337
271 XSetForeground (d.display->display, TGC, r->pix_colors[fg]); 338 XSetForeground (d.display->display, TGC, r->pix_colors[fg]);
272 339
273 while (len--) 340 while (len)
274 { 341 {
275#if ENABLE_COMBINING 342#if ENABLE_COMBINING
276 compose_char *cc; 343 compose_char *cc;
277#endif 344#endif
345 const text_t *tp = text;
278 text_t t = *text++; 346 text_t t = *tp;
347
348 while (++text, --len && *text == NOCHAR)
349 ;
350
351 int width = text - tp;
352 int fwidth = r->TermWin.fwidth * width;
279 353
280 if (0x2500 <= t && t <= 0x259f) 354 if (0x2500 <= t && t <= 0x259f)
281 { 355 {
282 uint16_t offs = linedraw_offs[t - 0x2500]; 356 uint16_t offs = linedraw_offs[t - 0x2500];
283 uint32_t *a = linedraw_command + (offs >> 4); 357 uint32_t *a = linedraw_command + (offs >> 4);
284 uint32_t *b = a + (offs & 15); 358 uint32_t *b = a + (offs & 15);
285 359
286 int W = r->TermWin.fwidth; 360 int W = fwidth;
287 int H = r->TermWin.fheight; 361 int H = r->TermWin.fheight;
288 362
289 int x_[16]; 363 int x_[16];
290 int y_[16]; 364 int y_[16];
291 365
356 } 430 }
357 } 431 }
358#if ENABLE_COMBINING 432#if ENABLE_COMBINING
359 else if (IS_COMPOSE (t) && (cc = rxvt_composite[t])) 433 else if (IS_COMPOSE (t) && (cc = rxvt_composite[t]))
360 { 434 {
435 text_t chrs[2];
436 width = min (2, width);
437 chrs [1] = NOCHAR;
438
439 *chrs = cc->c1;
361 rxvt_font *f1 = (*fs)[fs->find_font (cc->c1)]; 440 rxvt_font *f1 = (*fs)[fs->find_font (cc->c1)];
362 f1->draw (d, x, y, &(t = cc->c1), 1, fg, bg); 441 f1->draw (d, x, y, chrs, width, fg, bg);
442
363 if (cc->c2 != NOCHAR) 443 if (cc->c2 != NOCHAR)
364 { 444 {
445 bool careful;
446
365 // prefer font of first character, for no good reasons 447 // prefer font of first character, for no good reasons
366 rxvt_font *f2 = f1->has_codepoint (cc->c2) 448 *chrs = cc->c2;
449 rxvt_font *f2 = (f1->has_char (cc->c2, 0, careful) && !careful)
367 ? f1 450 ? f1
368 : (*fs)[fs->find_font (cc->c2)]; 451 : (*fs)[fs->find_font (cc->c2)];
369 452
370 f2->draw (d, x, y, &(t = cc->c2), 1, fg, -1); 453 f2->draw (d, x, y, chrs, width, fg, -1);
371 } 454 }
372 } 455 }
373#endif 456#endif
374 else 457 else
375 switch (t) 458 switch (t)
376 { 459 {
460 case '\t':
377 case ZERO_WIDTH_CHAR: 461 case ZERO_WIDTH_CHAR:
462 case NOCHAR:
378 break; 463 break;
379 464
380 default: 465 default:
381 int w = 0;
382 while (len > 0 && *text == NOCHAR)
383 {
384 ++text;
385 --len;
386 w += r->TermWin.fwidth;
387 }
388
389 XDrawRectangle (d.display->display, d, TGC, x + 2, y + 2, 466 XDrawRectangle (d.display->display, d, TGC, x + 2, y + 2,
390 w + r->TermWin.fwidth - 4, r->TermWin.fheight - 4); 467 fwidth - 4, r->TermWin.fheight - 4);
391 x += w;
392 } 468 }
393 469
394 x += r->TermWin.fwidth; 470 x += fwidth;
395 } 471 }
396} 472}
397 473
398///////////////////////////////////////////////////////////////////////////// 474/////////////////////////////////////////////////////////////////////////////
399 475
404 480
405 rxvt_fontprop properties (); 481 rxvt_fontprop properties ();
406 482
407 bool load (const rxvt_fontprop &prop); 483 bool load (const rxvt_fontprop &prop);
408 484
409 bool has_codepoint (unicode_t unicode); 485 bool has_char (unicode_t unicode, const rxvt_fontprop *prop, bool &careful);
410 486
411 void draw (rxvt_drawable &d, int x, int y, 487 void draw (rxvt_drawable &d, int x, int y,
412 const text_t *text, int len, 488 const text_t *text, int len,
413 int fg, int bg); 489 int fg, int bg);
414 490
491 bool slow; // wether this is a proportional font or has other funny characteristics
415 XFontStruct *f; 492 XFontStruct *f;
416 codeset cs; 493 codeset cs;
417 bool enc2b, encm; 494 bool enc2b, encm;
418 495
419 char *get_property (XFontStruct *f, const char *property, const char *repl) const; 496 char *get_property (XFontStruct *f, const char *property, const char *repl) const;
442} 519}
443 520
444bool 521bool
445rxvt_font_x11::set_properties (rxvt_fontprop &p, int height, const char *weight, const char *slant, int avgwidth) 522rxvt_font_x11::set_properties (rxvt_fontprop &p, int height, const char *weight, const char *slant, int avgwidth)
446{ 523{
447 p.width = avgwidth ? (avgwidth + 1) / 10 : (height + 1) / 2; 524 p.width = avgwidth ? (avgwidth + 1) / 10 : (height + 1) / 2;
448 p.height = height; 525 p.height = height;
449 p.weight = *weight == 'B' || *weight == 'b' ? rxvt_fontprop::bold : rxvt_fontprop::medium; 526 p.weight = *weight == 'B' || *weight == 'b' ? rxvt_fontprop::bold : rxvt_fontprop::medium;
450 p.slant = *slant == 'r' || *slant == 'R' ? rxvt_fontprop::roman : rxvt_fontprop::italic; 527 p.slant = *slant == 'r' || *slant == 'R' ? rxvt_fontprop::roman : rxvt_fontprop::italic;
451 528
452 return true; 529 return true;
454 531
455bool 532bool
456rxvt_font_x11::set_properties (rxvt_fontprop &p, XFontStruct *f) 533rxvt_font_x11::set_properties (rxvt_fontprop &p, XFontStruct *f)
457{ 534{
458 unsigned long height; 535 unsigned long height;
536
537#if 0
459 if (!XGetFontProperty (f, XInternAtom (DISPLAY, "PIXEL_SIZE", 0), &height)) 538 if (!XGetFontProperty (f, XInternAtom (DISPLAY, "PIXEL_SIZE", 0), &height))
460 return false; 539 return false;
540#else
541 height = f->ascent + f->descent;
542#endif
461 543
462 unsigned long avgwidth; 544 unsigned long avgwidth;
463 if (!XGetFontProperty (f, XInternAtom (DISPLAY, "AVERAGE_WIDTH", 0), &avgwidth)) 545 if (!XGetFontProperty (f, XInternAtom (DISPLAY, "AVERAGE_WIDTH", 0), &avgwidth))
464 avgwidth = 0; 546 avgwidth = 0;
465 547
508 else 590 else
509 return false; 591 return false;
510} 592}
511 593
512// fix the size of scalable fonts 594// fix the size of scalable fonts
513static void 595static bool
514fix_scalable (char *buf, const char *name, const rxvt_fontprop &prop) 596replace_field (char *buf, const char *name, int index, const char old, const char *replace)
515{ 597{
516 int slashes = 0; 598 int slashes = 0;
517 const char *size; 599 const char *field, *end;
518 600
519 for (const char *c = name; *c; c++) 601 for (const char *c = name; *c; c++)
520 if (*c == '-') 602 if (*c == '-')
521 { 603 {
522 if (slashes == 6) 604 if (slashes == index)
523 size = c + 1; 605 field = c + 1;
606
607 if (slashes == index + 1)
608 end = c;
524 609
525 if (++slashes >= 13) 610 if (++slashes >= 13)
526 break; 611 break;
527 } 612 }
528 613
529 if (slashes >= 13 && size[0] == '0') 614 if (slashes >= 13 && (!old || *field == old))
530 { 615 {
616 // TODO: check for overflow in font-name
531 strncpy (buf, name, size - name); 617 strncpy (buf, name, field - name);
532 buf += size - name; 618 buf += field - name;
533 buf += sprintf (buf, "%d", prop.height);
534 strcpy (buf, size + 1); 619 strcpy (buf, replace);
620 strcat (buf, end);
621
622 return true;
535 } 623 }
536 else 624 else
625 {
537 strcpy (buf, name); 626 strcpy (buf, name);
627
628 return false;
629 }
538} 630}
539 631
540bool 632bool
541rxvt_font_x11::load (const rxvt_fontprop &prop) 633rxvt_font_x11::load (const rxvt_fontprop &prop)
542{ 634{
543 clear (); 635 clear ();
544 636
637 char field_str[64]; // enough for 128 bits
638
639 // first morph the font if required
640 if (prop.weight != rxvt_fontprop::unset
641 || prop.slant != rxvt_fontprop::unset)
642 {
643 char fname[1024];
644
645 if (name[0] != '-')
646 {
647 f = XLoadQueryFont (DISPLAY, name);
648
649 if (!f)
650 return false;
651
652 char *new_name = get_property (f, "FONT", name);
653
654 if (new_name)
655 set_name (new_name);
656 else
657 rxvt_warn ("font '%s' has no FONT property, continuing without.", name);
658
659 XFreeFont (DISPLAY, f);
660 f = 0;
661 }
662
663 if (prop.weight != rxvt_fontprop::unset)
664 {
665 replace_field (fname, name, 2, 0,
666 prop.weight < rxvt_fontprop::bold
667 ? "medium" : "bold");
668 set_name (strdup (fname));
669 }
670
671 if (prop.slant != rxvt_fontprop::unset)
672 {
673 replace_field (fname, name, 3, 0,
674 prop.slant < rxvt_fontprop::italic
675 ? "r" : "i"); // TODO: handle "o"blique, too
676 set_name (strdup (fname));
677 }
678 }
679
680 sprintf (field_str, "%d", prop.height == rxvt_fontprop::unset
681 ? 0 : prop.height);
682
683 struct font_weight {
684 char *name;
685 int diff;
686
687 void clear ()
688 {
689 name = 0;
690 diff = 0x7fffffff;
691 }
692
693 font_weight () { clear (); }
694 ~font_weight () { free (name); }
695 };
696
545 char **list; 697 char **list;
546 int count; 698 int count;
547 list = XListFonts (DISPLAY, name, 1024, &count); 699 list = XListFonts (DISPLAY, name, 4000, &count);
700
548 set_name (0); 701 set_name (0);
549 702
550 if (!list) 703 if (!list)
551 return false; 704 return false;
552 705
553 int bestdiff = 0x7fffffff; 706 font_weight *fonts = new font_weight[count];
707
554 for (int i = 0; i < count; i++) 708 for (int i = 0; i < count; i++)
555 { 709 {
556 rxvt_fontprop p; 710 rxvt_fontprop p;
557 char fname[1024]; 711 char fname[1024];
558 fix_scalable (fname, list[i], prop); 712
713 int diff = 0;
714
715 if (replace_field (fname, list[i], 6, '0', field_str))
716 diff += 10; // slightly penalize scalable fonts
559 717
560 if (!set_properties (p, fname)) 718 if (!set_properties (p, fname))
561 continue; 719 continue;
562 720
721 if (prop.height != rxvt_fontprop::unset
563 if (p.height > prop.height) // weed out too large fonts 722 && p.height > prop.height) // weed out too large fonts
564 continue; 723 continue;
565 724
566 int diff = (prop.height - p.height) * 32 725 if (prop.height != rxvt_fontprop::unset) diff += (prop.height - p.height) * 128;
567 + abs (prop.weight - p.weight) 726 if (prop.weight != rxvt_fontprop::unset) diff += abs (prop.weight - p.weight);
568 + abs (prop.slant - p.slant ); 727 if (prop.slant != rxvt_fontprop::unset) diff += abs (prop.slant - p.slant);
728 //if (prop.width != rxvt_fontprop::unset) diff += abs (prop.width - p.width);
569 729
570 if (!name // compare against best found so far 730 fonts[i].name = strdup (fname);
571 || diff < bestdiff) 731 fonts[i].diff = diff;
572 {
573 set_name (strdup (fname));
574 bestdiff = diff;
575 }
576 } 732 }
577 733
578 XFreeFontNames (list); 734 XFreeFontNames (list);
579 735
580 if (!name) 736 // this loop only iterates when the guessed font-size is too small
581 return false; 737 for (;;)
738 {
739 font_weight *best = fonts + count - 1;
582 740
741 for (font_weight *w = best; w-- > fonts; )
742 if (w->diff < best->diff)
743 best = w;
744
745 if (!best->name
583 f = XLoadQueryFont (DISPLAY, name); 746 || !(f = XLoadQueryFont (DISPLAY, best->name)))
747 break;
748
749 set_name (best->name);
750 best->clear ();
751
752 ascent = f->ascent;
753 descent = f->descent;
754 height = ascent + descent;
755
756 if (prop.height == rxvt_fontprop::unset
757 || height <= prop.height)
758 break; // font is ready for use
759
760 // PIXEL_SIZE small enough, but real height too large
761 clear ();
762 }
763
764 delete [] fonts;
584 765
585 if (!f) 766 if (!f)
586 return false; 767 return false;
587 768
588 char *registry = get_property (f, "CHARSET_REGISTRY", 0); 769 char *registry = get_property (f, "CHARSET_REGISTRY", 0);
617 cs = CS_UNICODE_16; // X11 can have a max. of 65536 chars per font 798 cs = CS_UNICODE_16; // X11 can have a max. of 65536 chars per font
618 799
619 encm = f->min_byte1 != 0 || f->max_byte1 != 0; 800 encm = f->min_byte1 != 0 || f->max_byte1 != 0;
620 enc2b = encm || f->max_char_or_byte2 > 255; 801 enc2b = encm || f->max_char_or_byte2 > 255;
621 802
622 ascent = f->ascent;
623 descent = f->descent;
624 height = ascent + descent;
625
626 slow = false; 803 slow = false;
627 804
805#if 1 // only used for slow detection, TODO optimize
628 if (f->min_bounds.width == f->max_bounds.width) 806 if (f->min_bounds.width == f->max_bounds.width)
629 width = f->min_bounds.width; 807 width = f->min_bounds.width;
630 else if (f->per_char == NULL) 808 else if (f->per_char == NULL)
631 width = f->max_bounds.width; 809 width = f->max_bounds.width;
632 else 810 else
645 width = f->per_char[N].width; 823 width = f->per_char[N].width;
646 824
647 --N; 825 --N;
648 } 826 }
649 } 827 }
828#endif
829
830 width = 1;
831
832 for (uint16_t *t = extent_test_chars + NUM_EXTENT_TEST_CHARS; t-- > extent_test_chars; )
833 {
834 if (cs != CS_UNICODE
835 && *t > 0x100
836 && FROM_UNICODE (cs, *t) == NOCHAR)
837 continue;
838
839 // ignore characters we wouldn't use anyways
840 bool careful;
841 if (!has_char (*t, &prop, careful))
842 continue;
843
844 XChar2b ch = { *t >> 8, *t };
845
846 XCharStruct g;
847 int dir_ret, asc_ret, des_ret;
848 XTextExtents16 (f, &ch, 1, &dir_ret, &asc_ret, &des_ret, &g);
849
850 int wcw = wcwidth (*t); if (wcw > 0) g.width = g.width / wcw;
851
852 if (width < g.width) width = g.width;
853 }
650 854
651 if (cs == CS_UNKNOWN) 855 if (cs == CS_UNKNOWN)
652 { 856 {
653 fprintf (stderr, "unable to deduce codeset, ignoring font '%s'\n", name); 857 fprintf (stderr, "unable to deduce codeset, ignoring font '%s'\n", name);
654 858
655 clear (); 859 clear ();
656
657 return false; 860 return false;
658 } 861 }
862
863#if 0 // do it per-character
864 if (prop && width > prop->width)
865 {
866 clear ();
867 return false;
868 }
869#endif
659 870
660 return true; 871 return true;
661} 872}
662 873
663void 874void
669 f = 0; 880 f = 0;
670 } 881 }
671} 882}
672 883
673bool 884bool
674rxvt_font_x11::has_codepoint (unicode_t unicode) 885rxvt_font_x11::has_char (unicode_t unicode, const rxvt_fontprop *prop, bool &careful)
675{ 886{
676 uint32_t ch = FROM_UNICODE (cs, unicode); 887 uint32_t ch = FROM_UNICODE (cs, unicode);
677 888
678 if (ch == NOCHAR) 889 if (ch == NOCHAR)
679 return false; 890 return false;
688 899
689 if (byte1 < f->min_byte1 || byte1 > f->max_byte1 900 if (byte1 < f->min_byte1 || byte1 > f->max_byte1
690 || byte2 < f->min_char_or_byte2 || byte2 > f->max_char_or_byte2) 901 || byte2 < f->min_char_or_byte2 || byte2 > f->max_char_or_byte2)
691 return false; 902 return false;
692 903
693 if (!f->per_char) 904 if (f->per_char)
694 return true; 905 {
695
696 int D = f->max_char_or_byte2 - f->min_char_or_byte2 + 1; 906 int D = f->max_char_or_byte2 - f->min_char_or_byte2 + 1;
697 int N = (byte1 - f->min_byte1) * D + byte2 - f->min_char_or_byte2; 907 int N = (byte1 - f->min_byte1) * D + byte2 - f->min_char_or_byte2;
698 908
699 xcs = f->per_char + N; 909 xcs = f->per_char + N;
910 }
911 else
912 xcs = &f->max_bounds;
700 } 913 }
701 else 914 else
702 { 915 {
703 if (ch < f->min_char_or_byte2 || ch > f->max_char_or_byte2) 916 if (ch < f->min_char_or_byte2 || ch > f->max_char_or_byte2)
704 return false; 917 return false;
705 918
706 if (!f->per_char) 919 if (f->per_char)
707 return true;
708
709 xcs = f->per_char + (ch - f->min_char_or_byte2); 920 xcs = f->per_char + (ch - f->min_char_or_byte2);
921 else
922 xcs = &f->max_bounds;
710 } 923 }
711 924
712 if (xcs->lbearing == 0 && xcs->rbearing == 0 && xcs->width == 0 925 if (xcs->lbearing == 0 && xcs->rbearing == 0 && xcs->width == 0
713 && xcs->ascent == 0 && xcs->descent == 0) 926 && xcs->ascent == 0 && xcs->descent == 0)
927 return false;
928
929 if (!prop || prop->width == rxvt_fontprop::unset)
930 return true;
931
932 // check character against base font bounding box
933 int w = xcs->width;
934 int wcw = wcwidth (unicode);
935 if (wcw > 0) w /= wcw;
936
937 careful = w > prop->width;
938 if (careful && w > prop->width * MAX_OVERLAP >> 2)
714 return false; 939 return false;
715 940
716 return true; 941 return true;
717} 942}
718 943
728 953
729 bool slow = this->slow 954 bool slow = this->slow
730 || width != r->TermWin.fwidth 955 || width != r->TermWin.fwidth
731 || height != r->TermWin.fheight; 956 || height != r->TermWin.fheight;
732 957
733 int base = r->TermWin.fbase; 958 int base = ascent; // sorry, incorrect: r->TermWin.fbase;
734 959
735 XGCValues v; 960 XGCValues v;
736 v.foreground = r->pix_colors[fg]; 961 v.foreground = r->pix_colors[fg];
737 v.font = f->fid; 962 v.font = f->fid;
738 963
803} 1028}
804 1029
805///////////////////////////////////////////////////////////////////////////// 1030/////////////////////////////////////////////////////////////////////////////
806 1031
807#if XFT 1032#if XFT
808#if 0
809#define UNIBITS 21
810//#define SWATHBITS (UNIBITS / 2 + 3) // minimum size for "full" tables
811#define SWATHBITS 8
812#endif
813 1033
814struct rxvt_font_xft : rxvt_font { 1034struct rxvt_font_xft : rxvt_font {
815 rxvt_font_xft () { f = 0; } 1035 rxvt_font_xft () { f = 0; }
816 1036
817 void clear (); 1037 void clear ();
822 1042
823 void draw (rxvt_drawable &d, int x, int y, 1043 void draw (rxvt_drawable &d, int x, int y,
824 const text_t *text, int len, 1044 const text_t *text, int len,
825 int fg, int bg); 1045 int fg, int bg);
826 1046
827 bool has_codepoint (unicode_t unicode); 1047 bool has_char (unicode_t unicode, const rxvt_fontprop *prop, bool &carefull);
828 1048
829protected: 1049protected:
830 XftFont *f; 1050 XftFont *f;
831}; 1051};
832 1052
860} 1080}
861 1081
862bool 1082bool
863rxvt_font_xft::load (const rxvt_fontprop &prop) 1083rxvt_font_xft::load (const rxvt_fontprop &prop)
864{ 1084{
865#if 0
866 for (int i = 0; i < SWATHCOUNT; i++)
867 cvr[i] = 0;
868#endif
869
870 clear (); 1085 clear ();
871 1086
872 FcPattern *p = FcNameParse ((FcChar8 *) name); 1087 FcPattern *p = FcNameParse ((FcChar8 *) name);
873 1088
874 if (!p) 1089 if (!p)
875 return false; 1090 return false;
876 1091
877 FcValue v; 1092 FcValue v;
878 1093
1094 if (prop.height != rxvt_fontprop::unset
879 if (FcPatternGet (p, FC_PIXEL_SIZE, 0, &v) != FcResultMatch) 1095 || (FcPatternGet (p, FC_PIXEL_SIZE, 0, &v) != FcResultMatch
1096 && FcPatternGet (p, FC_SIZE, 0, &v) != FcResultMatch))
880 FcPatternAddInteger (p, FC_PIXEL_SIZE, prop.height); 1097 FcPatternAddInteger (p, FC_PIXEL_SIZE, prop.height);
881 1098
1099 if (prop.weight != rxvt_fontprop::unset
882 if (FcPatternGet (p, FC_WEIGHT, 0, &v) != FcResultMatch) 1100 && FcPatternGet (p, FC_WEIGHT, 0, &v) != FcResultMatch)
883 FcPatternAddInteger (p, FC_WEIGHT, prop.weight); 1101 FcPatternAddInteger (p, FC_WEIGHT, prop.weight);
884 1102
1103 if (prop.slant != rxvt_fontprop::unset
885 if (FcPatternGet (p, FC_SLANT, 0, &v) != FcResultMatch) 1104 && FcPatternGet (p, FC_SLANT, 0, &v) != FcResultMatch)
886 FcPatternAddInteger (p, FC_SLANT, prop.slant); 1105 FcPatternAddInteger (p, FC_SLANT, prop.slant);
887
888 if (FcPatternGet (p, FC_MINSPACE, 0, &v) != FcResultMatch)
889 FcPatternAddBool (p, FC_MINSPACE, 1);
890 1106
891#if 0 // clipping unfortunately destroys our precious double-width-characters 1107#if 0 // clipping unfortunately destroys our precious double-width-characters
892 // clip width, we can't do better, or can we? 1108 // clip width, we can't do better, or can we?
893 if (FcPatternGet (p, FC_CHAR_WIDTH, 0, &v) != FcResultMatch) 1109 if (FcPatternGet (p, FC_CHAR_WIDTH, 0, &v) != FcResultMatch)
894 FcPatternAddInteger (p, FC_CHAR_WIDTH, prop.width); 1110 FcPatternAddInteger (p, FC_CHAR_WIDTH, prop->width);
895#endif 1111#endif
1112
1113 if (FcPatternGet (p, FC_MINSPACE, 0, &v) != FcResultMatch)
1114 FcPatternAddBool (p, FC_MINSPACE, 1);
1115
1116 // store generated name so iso14755 view gives better results
1117 set_name ((char *)FcNameUnparse (p));
896 1118
897 XftResult result; 1119 XftResult result;
898 FcPattern *match = XftFontMatch (DISPLAY, DefaultScreen (DISPLAY), p, &result); 1120 FcPattern *match = XftFontMatch (DISPLAY, DefaultScreen (DISPLAY), p, &result);
899 1121
900 FcPatternDestroy (p); 1122 FcPatternDestroy (p);
901 1123
902 if (!match) 1124 if (!match)
903 return false; 1125 return false;
904 1126
905 f = XftFontOpenPattern (DISPLAY, match);
906
907 if (!f)
908 {
909 FcPatternDestroy (match);
910 return false;
911 }
912
913 FT_Face face = XftLockFace (f);
914
915 slow = !FT_IS_FIXED_WIDTH (face);
916
917 int ftheight = 0; 1127 int ftheight = 0;
1128 bool success = true;
918 1129
919 for (;;) 1130 for (;;)
920 { 1131 {
921 XGlyphInfo g1, g2; 1132 f = XftFontOpenPattern (DISPLAY, FcPatternDuplicate (match));
922 FcChar8 c;
923 1133
924 c = 'i'; XftTextExtents8 (DISPLAY, f, &c, 1, &g1); 1134 if (!f)
925 c = 'W'; XftTextExtents8 (DISPLAY, f, &c, 1, &g2); 1135 {
1136 success = false;
1137 break;
1138 }
926 1139
927 if (g1.xOff != g2.xOff) // don't simply trust the font 1140 FT_Face face = XftLockFace (f);
928 slow = true;
929 1141
930 width = g2.xOff;
931 ascent = (face->size->metrics.ascender + 63) >> 6; 1142 ascent = (face->size->metrics.ascender + 63) >> 6;
932 descent = (-face->size->metrics.descender + 63) >> 6; 1143 descent = (-face->size->metrics.descender + 63) >> 6;
933 height = ascent + descent; 1144 height = max (ascent + descent, (face->size->metrics.height + 63) >> 6);
1145 width = 0;
934 1146
935 if (height <= prop.height || !prop.height) 1147 bool scalable = face->face_flags & FT_FACE_FLAG_SCALABLE;
1148
1149 XftUnlockFace (f);
1150
1151 for (uint16_t *t = extent_test_chars + NUM_EXTENT_TEST_CHARS; t-- > extent_test_chars; )
1152 {
1153 FcChar16 ch = *t;
1154
1155 if (cs != CS_UNICODE
1156 && ch > 0x100
1157 && FROM_UNICODE (cs, ch) == NOCHAR)
1158 continue;
1159
1160 // ignore characters we wouldn't use anyways
1161 bool careful;
1162 if (!has_char (*t, &prop, careful))
1163 continue;
1164
1165 XGlyphInfo g;
1166 XftTextExtents16 (DISPLAY, f, &ch, 1, &g);
1167
1168 int wcw = wcwidth (ch);
1169 if (wcw > 0) g.width = g.width / wcw;
1170
1171 if (width < g.width) width = g.width;
1172 if (height < g.height) height = g.height;
1173 }
1174
1175 if (prop.height == rxvt_fontprop::unset
1176 || height <= prop.height
1177 || height <= 2
1178 || !scalable)
936 break; 1179 break;
937 1180
938 if (ftheight) 1181 if (ftheight)
939 { 1182 {
940 // take smaller steps near the end 1183 // take smaller steps near the end
941 if (height > prop.height + 1) ftheight++; 1184 if (height > prop.height + 1) ftheight++;
942 if (height > prop.height + 2) ftheight++; 1185 if (height > prop.height + 2) ftheight++;
943 if (height > prop.height + 3) ftheight++; 1186 if (height > prop.height + 3) ftheight++;
944 1187
945 FT_Set_Pixel_Sizes (face, 0, ftheight -= height - prop.height); 1188 ftheight -= height - prop.height;
946 } 1189 }
947 else 1190 else
948 FT_Set_Pixel_Sizes (face, 0, ftheight = prop.height); 1191 ftheight = prop.height - 1;
1192
1193 XftFontClose (DISPLAY, f);
1194 FcPatternDel (match, FC_PIXEL_SIZE);
1195 FcPatternAddInteger (match, FC_PIXEL_SIZE, ftheight);
1196 }
1197
1198 FcPatternDestroy (match);
1199
1200#if 0 // do it per-character
1201 if (prop.width != rxvt_fontprop::unset && width > prop.width)
949 } 1202 {
1203 clear ();
1204 success = false;
1205 }
1206#endif
950 1207
951 XftUnlockFace (f); 1208 return success;
1209}
1210
1211bool
1212rxvt_font_xft::has_char (unicode_t unicode, const rxvt_fontprop *prop, bool &careful)
1213{
1214 careful = false;
1215
1216 if (!XftCharExists (DISPLAY, f, unicode))
1217 return false;
1218
1219 if (!prop || prop->width == rxvt_fontprop::unset)
1220 return true;
1221
1222 // check character against base font bounding box
1223 FcChar32 ch = unicode;
1224 XGlyphInfo g;
1225 XftTextExtents32 (DISPLAY, f, &ch, 1, &g);
1226
1227 int w = g.width;
1228 int wcw = wcwidth (unicode);
1229 if (wcw > 0) w /= wcw;
1230
1231 careful = w > prop->width;
1232 if (careful && w > prop->width * MAX_OVERLAP >> 2)
1233 return false;
952 1234
953 return true; 1235 return true;
954}
955
956bool
957rxvt_font_xft::has_codepoint (unicode_t unicode)
958{
959 return XftCharExists (DISPLAY, f, unicode);
960} 1236}
961 1237
962void 1238void
963rxvt_font_xft::draw (rxvt_drawable &d, int x, int y, 1239rxvt_font_xft::draw (rxvt_drawable &d, int x, int y,
964 const text_t *text, int len, 1240 const text_t *text, int len,
965 int fg, int bg) 1241 int fg, int bg)
966{ 1242{
967 clear_rect (d, x, y, r->TermWin.fwidth * len, r->TermWin.fheight, bg); 1243 clear_rect (d, x, y, r->TermWin.fwidth * len, r->TermWin.fheight, bg);
968 1244
969 if (!slow && width == r->TermWin.fwidth && 0) 1245 int base = ascent; // should be fbase, but that is incorrect
1246
1247 XGlyphInfo extents;
1248 FcChar32 *enc = (FcChar32 *) get_enc_buf (len * sizeof (FcChar32));
1249 FcChar32 *ep = enc;
1250 int ewidth = 0;
1251 int xoff = 0;
1252
1253 while (len)
970 { 1254 {
971 if (sizeof (text_t) == sizeof (FcChar16)) 1255 int cwidth = r->TermWin.fwidth;
972 XftDrawString16 (d, &r->pix_colors[fg].c, f, x, y + r->TermWin.fbase, (const FcChar16 *)text, len); 1256 FcChar32 fc = *text++; len--;
1257 FT_UInt gl;
1258
1259 while (len && *text == NOCHAR)
1260 text++, len--, cwidth += r->TermWin.fwidth;
1261
1262 gl = XftCharIndex (d.display->display, f, fc);
1263 XftGlyphExtents (d.display->display, f, &gl, 1, &extents);
1264
1265 if (extents.xOff != cwidth && ep != enc)
1266 {
1267 if (xoff > ewidth) xoff = ewidth;
1268 XftDrawGlyphs (d, &r->pix_colors[fg].c, f,
1269 x + (ewidth - xoff >> 1),
1270 y + base, enc, ep - enc);
1271 x += ewidth;
1272
1273 ep = enc;
1274 ewidth = 0;
1275 xoff = 0;
1276 }
1277
1278 if (fc == ' ' && ep == enc) // skip leading spaces
1279 {
1280 x += cwidth;
1281 continue;
1282 }
1283
973 else 1284 else
974 XftDrawString32 (d, &r->pix_colors[fg].c, f, x, y + r->TermWin.fbase, (const FcChar32 *)text, len);
975 }
976 else
977 {
978 while (len)
979 {
980 if (*text != NOCHAR && *text != ' ')
981 {
982 int fwidth = r->TermWin.fwidth;
983 if (len >= 2 && text[1] == NOCHAR)
984 fwidth *= 2;
985
986 XGlyphInfo extents;
987 if (sizeof (text_t) == sizeof (FcChar16))
988 {
989 XftTextExtents16 (d.display->display, f, (const FcChar16 *)text, 1, &extents);
990 XftDrawString16 (d, &r->pix_colors[fg].c, f, x + extents.x + (fwidth - extents.width) / 2,
991 y + r->TermWin.fbase, (const FcChar16 *)text, 1);
992 }
993 else
994 {
995 XGlyphInfo extents;
996 XftTextExtents32 (d.display->display, f, (const FcChar32 *)text, 1, &extents);
997 XftDrawString32 (d, &r->pix_colors[fg].c, f, x + extents.x + (fwidth - extents.width) / 2,
998 y + r->TermWin.fbase, (const FcChar32 *)text, 1);
999 }
1000 }
1001
1002 x += r->TermWin.fwidth;
1003 text++;
1004 len--;
1005 } 1285 {
1286 *ep++ = gl;
1287 ewidth += cwidth;
1288 xoff += extents.xOff;
1289 }
1290 }
1291
1292 if (ep != enc)
1293 {
1294 if (xoff > ewidth) xoff = ewidth;
1295 XftDrawGlyphs (d, &r->pix_colors[fg].c, f,
1296 x + (ewidth - xoff >> 1),
1297 y + base, enc, ep - enc);
1006 } 1298 }
1007} 1299}
1008#endif 1300#endif
1009 1301
1010///////////////////////////////////////////////////////////////////////////// 1302/////////////////////////////////////////////////////////////////////////////
1021} 1313}
1022 1314
1023void 1315void
1024rxvt_fontset::clear () 1316rxvt_fontset::clear ()
1025{ 1317{
1318 prop.width = prop.height = prop.weight = prop.slant
1319 = rxvt_fontprop::unset;
1320
1026 for (rxvt_font **i = fonts.begin (); i != fonts.end (); i++) 1321 for (rxvt_font **i = fonts.begin (); i != fonts.end (); i++)
1027 FONT_UNREF (*i); 1322 FONT_UNREF (*i);
1028 1323
1324 for (pagemap **p = fmap.begin (); p != fmap.end (); p++)
1325 delete *p;
1326
1029 free (fontdesc); fontdesc = 0; 1327 free (fontdesc); fontdesc = 0;
1030 1328
1031 fonts.clear (); 1329 fonts.clear ();
1032 base_id = 0;
1033 base_prop.height = 0x7fffffff;
1034 base_prop.weight = rxvt_fontprop::medium;
1035 base_prop.slant = rxvt_fontprop::roman;
1036 1330
1037 fallback = fallback_fonts; 1331 fallback = fallback_fonts;
1038} 1332}
1039 1333
1040rxvt_font * 1334rxvt_font *
1043 rxvt_font *f; 1337 rxvt_font *f;
1044 1338
1045 if (!name || !*name) 1339 if (!name || !*name)
1046 { 1340 {
1047 name = ""; 1341 name = "";
1048 f = new rxvt_font_default; 1342 f = new rxvt_font_default (this);
1049 } 1343 }
1050#if XFT 1344#if XFT
1051 else if (!strncmp (name, "xft:", 4)) 1345 else if (!strncmp (name, "xft:", 4))
1052 { 1346 {
1053 name += 4; 1347 name += 4;
1054 f = new rxvt_font_xft; 1348 f = new rxvt_font_xft ();
1055 } 1349 }
1056#endif 1350#endif
1057 else if (!strncmp (name, "x:", 2)) 1351 else if (!strncmp (name, "x:", 2))
1058 { 1352 {
1059 name += 2; 1353 name += 2;
1060 f = new rxvt_font_x11; 1354 f = new rxvt_font_x11;
1061 } 1355 }
1062 else 1356 else
1063 f = new rxvt_font_x11; 1357 f = new rxvt_font_x11;
1064 1358
1065 f->fs = this;
1066 f->set_term (r); 1359 f->set_term (r);
1067 f->set_name (strdup (name)); 1360 f->set_name (strdup (name));
1068 1361
1069 f->cs = cs; 1362 f->cs = cs;
1070 f->loaded = false; 1363 f->loaded = false;
1084 1377
1085 do 1378 do
1086 { 1379 {
1087 while (*desc <= ' ') desc++; 1380 while (*desc <= ' ') desc++;
1088 1381
1382 codeset cs = CS_UNICODE;
1383
1089 if (*desc == '[') 1384 if (*desc == '[')
1090 { 1385 {
1091 fprintf (stderr, "extra font parameters not yet supported, skipping.\n"); 1386 char spec[256];
1092
1093 //const char *extra = desc++; // not yet used 1387 const char *extra = ++desc; // not yet used
1094 1388
1095 desc = strchr (desc, ']'); 1389 desc = strchr (desc, ']');
1096 1390
1097 if (!desc) 1391 if (!desc)
1098 { 1392 {
1099 fprintf (stderr, "ERROR: opening '[' without closing ']' in font specification.\n"); 1393 rxvt_warn ("ERROR: opening '[' without closing ']' in font specification, trying to continue.\n");
1100 break; 1394 break;
1101 } 1395 }
1396
1397 memcpy (spec, extra, min (desc - extra, 255));
1398 spec[min (desc - extra, 255)] = 0;
1399
1400 if (!strncmp (extra, "codeset=", sizeof ("codeset=") - 1))
1401 cs = codeset_from_name (spec + sizeof ("codeset=") - 1);
1402 else
1403 rxvt_warn ("unknown parameter '%s' in font specification, skipping.\n", spec);
1102 1404
1103 desc++; 1405 desc++;
1104 while (*desc <= ' ') desc++; 1406 while (*desc <= ' ') desc++;
1105 } 1407 }
1106 1408
1111 if (end - desc < 511) 1413 if (end - desc < 511)
1112 { 1414 {
1113 strncpy (buf, desc, end - desc); 1415 strncpy (buf, desc, end - desc);
1114 buf[end - desc] = 0; 1416 buf[end - desc] = 0;
1115 1417
1116 fonts.push_back (new_font (buf, CS_UNICODE)); 1418 fonts.push_back (new_font (buf, cs));
1117 } 1419 }
1420 else
1421 rxvt_warn ("fontset element too long (>511 bytes), ignored.");
1118 1422
1119 desc = end + 1; 1423 desc = end + 1;
1120 } 1424 }
1121 while (*end); 1425 while (*end);
1122 } 1426 }
1123} 1427}
1124 1428
1125bool 1429bool
1126rxvt_fontset::realize_font (int i) 1430rxvt_fontset::realize_font (int i)
1127{ 1431{
1432 if (i < 0 || i >= fonts.size ())
1433 return false;
1434
1128 if (fonts[i]->loaded) 1435 if (fonts[i]->loaded)
1129 return true; 1436 return true;
1130 1437
1131 fonts[i]->loaded = true; 1438 fonts[i]->loaded = true;
1132 1439
1133 if (!fonts[i]->load (base_prop)) 1440 if (!fonts[i]->load (prop))
1134 { 1441 {
1135 fonts[i]->cs = CS_UNKNOWN; 1442 fonts[i]->cs = CS_UNKNOWN;
1136 return false; 1443 return false;
1137 } 1444 }
1138 1445
1148 1455
1149 fonts.push_back (new_font (0, CS_UNICODE)); 1456 fonts.push_back (new_font (0, CS_UNICODE));
1150 realize_font (0); 1457 realize_font (0);
1151 1458
1152 add_fonts (desc); 1459 add_fonts (desc);
1153
1154 if (!base_id)
1155 base_id = 1;
1156
1157 // we currently need a base-font, no matter what
1158 if ((int)fonts.size () <= base_id || !realize_font (base_id))
1159 {
1160 puts ("unable to load specified font (s), falling back to 'fixed'\n");
1161 add_fonts ("fixed");
1162 base_id = fonts.size () - 1;
1163 }
1164
1165 if ((int)fonts.size () <= base_id || !realize_font (base_id))
1166 return false;
1167
1168 base_prop = fonts[base_id]->properties ();
1169 1460
1170 return true; 1461 return true;
1171} 1462}
1172 1463
1173int 1464int
1179 1470
1180 return -1; 1471 return -1;
1181} 1472}
1182 1473
1183int 1474int
1184rxvt_fontset::find_font (unicode_t unicode, bool bold) 1475rxvt_fontset::find_font (unicode_t unicode)
1185{ 1476{
1477 if (unicode >= 1<<20)
1478 return 0;
1186 1479
1187 for (unsigned int i = !!(0x20 <= unicode && unicode <= 0x7f); // skip pseudo-font for ascii 1480 unicode_t hi = unicode >> 8;
1188 i < fonts.size (); 1481
1189 i++) 1482 if (hi < fmap.size ()
1483 && fmap[hi]
1484 && (*fmap[hi])[unicode & 0xff] != 0xff)
1485 return (*fmap[hi])[unicode & 0xff];
1486
1487 unsigned int i;
1488
1489 for (i = 0; i < fonts.size (); i++)
1190 { 1490 {
1191 rxvt_font *f = fonts[i]; 1491 rxvt_font *f = fonts[i];
1192 1492
1193 if (!f->loaded) 1493 if (!f->loaded)
1194 { 1494 {
1200 } 1500 }
1201 1501
1202 if (f->cs == CS_UNKNOWN) 1502 if (f->cs == CS_UNKNOWN)
1203 goto next_font; 1503 goto next_font;
1204 1504
1205 if (bold && f->properties ().weight < rxvt_fontprop::bold) 1505 bool careful;
1506 if (f->has_char (unicode, &prop, careful))
1507 {
1508 if (careful)
1509 i |= 128;
1510
1206 goto next_font; 1511 goto found;
1207 1512 }
1208 if (f->has_codepoint (unicode))
1209 return i;
1210 1513
1211 next_font: 1514 next_font:
1212 if (i == fonts.size () - 1) 1515 if (i == fonts.size () - 1)
1213 { 1516 {
1214 if (fallback->name) 1517 if (fallback->name)
1215 { 1518 {
1216 // search through the fallback list 1519 // search through the fallback list
1217 fonts.push_back (new_font (fallback->name, fallback->cs)); 1520 fonts.push_back (new_font (fallback->name, fallback->cs));
1218 fallback++; 1521 fallback++;
1219 } 1522 }
1220 else if (!bold) 1523 else
1221 { 1524 {
1222 // try to find a new font. 1525 // try to find a new font.
1223 // only xft currently supported, as there is no 1526 // only xft currently supported, as there is no
1224 // way to configure this and xft is easier to hack in, 1527 // way to configure this and xft is easier to hack in,
1225 // while x11 has more framework in place already. 1528 // while x11 has more framework in place already.
1226#if XFT 1529 // TODO: this is a real resource hog, xft takes ages(?)
1530#if XFT && USE_SLOW_LOOKUP
1227 // grab the first xft font that seems suitable 1531 // grab the first xft font that seems suitable
1228 FcPattern *p = FcPatternCreate (); 1532 FcPattern *p = FcPatternCreate ();
1229 1533
1230 FcCharSet *s = FcCharSetCreate (); 1534 FcCharSet *s = FcCharSetCreate ();
1231 FcCharSetAddChar (s, unicode); 1535 FcCharSetAddChar (s, unicode);
1232 FcPatternAddCharSet (p, FC_CHARSET, s); 1536 FcPatternAddCharSet (p, FC_CHARSET, s);
1233 // charsets don't help that much, as xft might return 1537 // charsets don't help that much, as xft might return
1234 // a non-matching font even if a better font is available :/ 1538 // a non-matching font even if a better font is available :/
1235 1539
1540 x x x x TODO prop might have unset contents
1236 FcPatternAddInteger (p, FC_PIXEL_SIZE, base_prop.height); 1541 FcPatternAddInteger (p, FC_PIXEL_SIZE, prop.height);
1237 FcPatternAddInteger (p, FC_WEIGHT, base_prop.weight); 1542 FcPatternAddInteger (p, FC_WEIGHT, prop.weight);
1238 FcPatternAddInteger (p, FC_SLANT, base_prop.slant); 1543 FcPatternAddInteger (p, FC_SLANT, prop.slant);
1239 FcPatternAddBool (p, FC_MINSPACE, 1); 1544 FcPatternAddBool (p, FC_MINSPACE, 1);
1240 //FcPatternAddBool (p, FC_ANTIALIAS, 1); 1545 //FcPatternAddBool (p, FC_ANTIALIAS, 1);
1241 1546
1242 XftResult result; 1547 XftResult result;
1243 FcPattern *match = XftFontMatch (DISPLAY, DefaultScreen (DISPLAY), p, &result); 1548 FcPattern *match = XftFontMatch (DISPLAY, DefaultScreen (DISPLAY), p, &result);
1263#endif 1568#endif
1264 } 1569 }
1265 } 1570 }
1266 } 1571 }
1267 1572
1268 // if no bold font found, use a regular one 1573 /* we must return SOME font */
1269 if (bold) 1574 i = 0;
1270 return find_font (unicode);
1271 1575
1272 return 0; /* we must return SOME font */ 1576found:
1273} 1577 // found a font, cache it
1578 if (i < 255)
1579 {
1580 while (hi >= fmap.size ())
1581 fmap.push_back (0);
1274 1582
1583 if (!fmap[hi])
1584 {
1585 fmap[hi] = (pagemap *)new pagemap;
1586 memset (fmap[hi], 0xff, sizeof (pagemap));
1587 }
1275 1588
1589 (*fmap[hi])[unicode & 0xff] = i;
1590 }
1276 1591
1592 return i;
1593}
1594
1595
1596

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines