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.94 by root, Thu Feb 2 18:04:46 2006 UTC vs.
Revision 1.121 by ayin, Sun Oct 28 11:25:04 2007 UTC

1/*--------------------------------*-C-*---------------------------------* 1/*----------------------------------------------------------------------*
2 * File: rxvtfont.C 2 * File: rxvtfont.C
3 *----------------------------------------------------------------------* 3 *----------------------------------------------------------------------*
4 * Copyright (c) 2003-2006 Marc Lehmann <pcg@goof.com> 4 * Copyright (c) 2003-2006 Marc Lehmann <pcg@goof.com>
5 * - original version. 5 * - original version.
6 * 6 *
163#define dTermDisplay Display *disp = term->dpy 163#define dTermDisplay Display *disp = term->dpy
164#define dTermGC GC gc = term->gc 164#define dTermGC GC gc = term->gc
165 165
166///////////////////////////////////////////////////////////////////////////// 166/////////////////////////////////////////////////////////////////////////////
167 167
168#if XFT
169rxvt_drawable::~rxvt_drawable ()
170{
171 if (xftdrawable)
172 XftDrawDestroy (xftdrawable);
173}
174
175rxvt_drawable::operator XftDraw *()
176{
177 if (!xftdrawable)
178 xftdrawable = XftDrawCreate (screen->dpy, drawable, screen->visual, screen->cmap);
179
180 return xftdrawable;
181}
182#endif
183
184/////////////////////////////////////////////////////////////////////////////
185
186static const char * 168static const char *
187enc_char (const text_t *text, uint32_t len, codeset cs, bool &zero) 169enc_char (const text_t *text, uint32_t len, codeset cs, bool &zero)
188{ 170{
189 uint8_t *buf = rxvt_temp_buf<uint8_t> (len); 171 uint8_t *buf = rxvt_temp_buf<uint8_t> (len);
190 uint8_t *res = buf; 172 uint8_t *res = buf;
250rxvt_font::clear_rect (rxvt_drawable &d, int x, int y, int w, int h, int color) const 232rxvt_font::clear_rect (rxvt_drawable &d, int x, int y, int w, int h, int color) const
251{ 233{
252 dTermDisplay; 234 dTermDisplay;
253 dTermGC; 235 dTermGC;
254 236
255 if (color == Color_bg) 237 if (color == Color_bg || color == Color_transparent)
256 XClearArea (disp, d, x, y, w, h, false); 238 XClearArea (disp, d, x, y, w, h, false);
257 else if (color >= 0) 239 else if (color >= 0)
258 { 240 {
259#if XFT 241#if XFT
242 bool done = false;
243#ifdef HAVE_BG_PIXMAP
244 if (term->bgPixmap.pixmap && color >= 0 && term->pix_colors[color].c.color.alpha < 0x0ff00)
245 {
246 Picture dst = XftDrawPicture (d);
247 if (dst != 0)
248 {
249 XClearArea (disp, d, x, y, w, h, false);
250 Picture solid_color_pict = XftDrawSrcPicture (d, &term->pix_colors[color].c);
251 XRenderComposite (disp, PictOpOver, solid_color_pict, None, dst, 0, 0, 0, 0, x, y, w, h);
252 done = true;
253 }
254 }
255#endif
256 if (!done)
260 XftDrawRect (d, &term->pix_colors[color].c, x, y, w, h); 257 XftDrawRect (d, &term->pix_colors[color].c, x, y, w, h);
261#else 258#else
262 XSetForeground (disp, gc, term->pix_colors[color]); 259 XSetForeground (disp, gc, term->pix_colors[color]);
263 XFillRectangle (disp, d, gc, x, y, w, h); 260 XFillRectangle (disp, d, gc, x, y, w, h);
264#endif 261#endif
265 } 262 }
288 p.slant = rxvt_fontprop::roman; 285 p.slant = rxvt_fontprop::roman;
289 286
290 return p; 287 return p;
291 } 288 }
292 289
293 bool load (const rxvt_fontprop &prop) 290 bool load (const rxvt_fontprop &prop, bool force_prop)
294 { 291 {
295 width = 1; height = 1; 292 width = 1; height = 1;
296 ascent = 1; descent = 0; 293 ascent = 1; descent = 0;
297 294
298 set_name (strdup ("built-in support font")); 295 set_name (strdup ("built-in support font"));
459 *chrs = cc->c2; 456 *chrs = cc->c2;
460 rxvt_font *f2 = (f1->has_char (cc->c2, 0, careful) && !careful) 457 rxvt_font *f2 = (f1->has_char (cc->c2, 0, careful) && !careful)
461 ? f1 458 ? f1
462 : (*fs)[fs->find_font (cc->c2)]; 459 : (*fs)[fs->find_font (cc->c2)];
463 460
464 f2->draw (d, x, y, chrs, width, fg, -1); 461 f2->draw (d, x, y, chrs, width, fg, Color_none);
465 } 462 }
466 } 463 }
467#endif 464#endif
468 else 465 else
469 switch (t) 466 switch (t)
489 486
490 void clear (); 487 void clear ();
491 488
492 rxvt_fontprop properties (); 489 rxvt_fontprop properties ();
493 490
494 bool load (const rxvt_fontprop &prop); 491 bool load (const rxvt_fontprop &prop, bool force_prop);
495 492
496 bool has_char (unicode_t unicode, const rxvt_fontprop *prop, bool &careful) const; 493 bool has_char (unicode_t unicode, const rxvt_fontprop *prop, bool &careful) const;
497 494
498 void draw (rxvt_drawable &d, int x, int y, 495 void draw (rxvt_drawable &d, int x, int y,
499 const text_t *text, int len, 496 const text_t *text, int len,
500 int fg, int bg); 497 int fg, int bg);
501 498
502 bool slow; // wether this is a proportional font or has other funny characteristics 499 bool slow; // wether this is a proportional font or has other funny characteristics
503 XFontStruct *f; 500 XFontStruct *f;
504 codeset cs;
505 bool enc2b, encm; 501 bool enc2b, encm;
506 502
507 char *get_property (XFontStruct *f, Atom property, const char *repl) const; 503 char *get_property (XFontStruct *f, Atom property, const char *repl) const;
508 bool set_properties (rxvt_fontprop &p, int height, const char *weight, const char *slant, int avgwidth); 504 bool set_properties (rxvt_fontprop &p, int height, const char *weight, const char *slant, int avgwidth);
509 bool set_properties (rxvt_fontprop &p, XFontStruct *f); 505 bool set_properties (rxvt_fontprop &p, XFontStruct *f);
516 unsigned long value; 512 unsigned long value;
517 513
518 if (XGetFontProperty (f, property, &value)) 514 if (XGetFontProperty (f, property, &value))
519 return XGetAtomName (term->dpy, value); 515 return XGetAtomName (term->dpy, value);
520 else 516 else
521 return rxvt_strdup (repl); 517 return repl ? strdup (repl) : 0;
522} 518}
523 519
524rxvt_fontprop 520rxvt_fontprop
525rxvt_font_x11::properties () 521rxvt_font_x11::properties ()
526{ 522{
645 return false; 641 return false;
646 } 642 }
647} 643}
648 644
649bool 645bool
650rxvt_font_x11::load (const rxvt_fontprop &prop) 646rxvt_font_x11::load (const rxvt_fontprop &prop, bool force_prop)
651{ 647{
652 dTermDisplay; 648 dTermDisplay;
653 649
654 clear (); 650 clear ();
655 651
656 char field_str[64]; // enough for 128 bits 652 char field_str[64]; // enough for 128 bits
657 653
658 // first morph the font if required 654 // first morph the font if required
659 if (prop.weight != rxvt_fontprop::unset 655 if (force_prop)
660 || prop.slant != rxvt_fontprop::unset)
661 { 656 {
662 char fname[1024]; 657 char fname[1024];
663 658
664 if (name[0] != '-') 659 if (name[0] != '-')
665 { 660 {
1057 1052
1058 void clear (); 1053 void clear ();
1059 1054
1060 rxvt_fontprop properties (); 1055 rxvt_fontprop properties ();
1061 1056
1062 bool load (const rxvt_fontprop &prop); 1057 bool load (const rxvt_fontprop &prop, bool force_prop);
1063 1058
1064 void draw (rxvt_drawable &d, int x, int y, 1059 void draw (rxvt_drawable &d, int x, int y,
1065 const text_t *text, int len, 1060 const text_t *text, int len,
1066 int fg, int bg); 1061 int fg, int bg);
1067 1062
1068 bool has_char (unicode_t unicode, const rxvt_fontprop *prop, bool &carefull) const; 1063 bool has_char (unicode_t unicode, const rxvt_fontprop *prop, bool &careful) const;
1069 1064
1070protected: 1065protected:
1071 XftFont *f; 1066 XftFont *f;
1072}; 1067};
1073 1068
1100 1095
1101 return p; 1096 return p;
1102} 1097}
1103 1098
1104bool 1099bool
1105rxvt_font_xft::load (const rxvt_fontprop &prop) 1100rxvt_font_xft::load (const rxvt_fontprop &prop, bool force_prop)
1106{ 1101{
1107 dTermDisplay; 1102 dTermDisplay;
1108 1103
1109 clear (); 1104 clear ();
1110 1105
1119 && (FcPatternGet (p, FC_PIXEL_SIZE, 0, &v) != FcResultMatch 1114 && (FcPatternGet (p, FC_PIXEL_SIZE, 0, &v) != FcResultMatch
1120 && FcPatternGet (p, FC_SIZE, 0, &v) != FcResultMatch)) 1115 && FcPatternGet (p, FC_SIZE, 0, &v) != FcResultMatch))
1121 FcPatternAddInteger (p, FC_PIXEL_SIZE, prop.height); 1116 FcPatternAddInteger (p, FC_PIXEL_SIZE, prop.height);
1122 1117
1123 if (prop.weight != rxvt_fontprop::unset 1118 if (prop.weight != rxvt_fontprop::unset
1124 && FcPatternGet (p, FC_WEIGHT, 0, &v) != FcResultMatch) 1119 && (force_prop || FcPatternGet (p, FC_WEIGHT, 0, &v) != FcResultMatch))
1125 FcPatternAddInteger (p, FC_WEIGHT, prop.weight); 1120 FcPatternAddInteger (p, FC_WEIGHT, prop.weight);
1126 1121
1127 if (prop.slant != rxvt_fontprop::unset 1122 if (prop.slant != rxvt_fontprop::unset
1128 && FcPatternGet (p, FC_SLANT, 0, &v) != FcResultMatch) 1123 && (force_prop || FcPatternGet (p, FC_SLANT, 0, &v) != FcResultMatch))
1129 FcPatternAddInteger (p, FC_SLANT, prop.slant); 1124 FcPatternAddInteger (p, FC_SLANT, prop.slant);
1130 1125
1131#if 0 // clipping unfortunately destroys our precious double-width-characters 1126#if 0 // clipping unfortunately destroys our precious double-width-characters
1132 // clip width, we can't do better, or can we? 1127 // clip width, we can't do better, or can we?
1133 if (FcPatternGet (p, FC_CHAR_WIDTH, 0, &v) != FcResultMatch) 1128 if (FcPatternGet (p, FC_CHAR_WIDTH, 0, &v) != FcResultMatch)
1282void 1277void
1283rxvt_font_xft::draw (rxvt_drawable &d, int x, int y, 1278rxvt_font_xft::draw (rxvt_drawable &d, int x, int y,
1284 const text_t *text, int len, 1279 const text_t *text, int len,
1285 int fg, int bg) 1280 int fg, int bg)
1286{ 1281{
1287 clear_rect (d, x, y, term->fwidth * len, term->fheight, bg);
1288
1289 XGlyphInfo extents; 1282 XGlyphInfo extents;
1290 XftGlyphSpec *enc = (XftGlyphSpec *)rxvt_temp_buf (len * sizeof (XftGlyphSpec)); 1283 XftGlyphSpec *enc = (XftGlyphSpec *)rxvt_temp_buf (len * sizeof (XftGlyphSpec));
1291 XftGlyphSpec *ep = enc; 1284 XftGlyphSpec *ep = enc;
1292 1285
1293 dTermDisplay; 1286 dTermDisplay;
1294 dTermGC; 1287 dTermGC;
1295 1288
1289 int w = term->fwidth * len;
1290 int h = term->fheight;
1291
1292 /* TODO: this logic needs some more thinking, since we no longer do pseudo-transparency.
1293 * Maybe make buffering into a resource flag? Compile time option doesn't seems like a
1294 * good idea from the perspective of packaging for wide variety of user configs.
1295 */
1296 bool buffered = true
1297#ifdef FORCE_UNBUFFERED_XFT
1298 && bg >= 0
1299#endif
1300 ;
1296 // cut trailing spaces 1301 // cut trailing spaces
1297 while (len && text [len - 1] == ' ') 1302 while (len && text [len - 1] == ' ')
1298 len--; 1303 len--;
1304
1305 int x_ = buffered ? 0 : x;
1306 int y_ = buffered ? 0 : y;
1299 1307
1300 while (len) 1308 while (len)
1301 { 1309 {
1302 int cwidth = term->fwidth; 1310 int cwidth = term->fwidth;
1303 FcChar32 fc = *text++; len--; 1311 FcChar32 fc = *text++; len--;
1309 { 1317 {
1310 FT_UInt glyph = XftCharIndex (disp, f, fc); 1318 FT_UInt glyph = XftCharIndex (disp, f, fc);
1311 XftGlyphExtents (disp, f, &glyph, 1, &extents); 1319 XftGlyphExtents (disp, f, &glyph, 1, &extents);
1312 1320
1313 ep->glyph = glyph; 1321 ep->glyph = glyph;
1314 ep->x = x + (cwidth - extents.xOff >> 1); 1322 ep->x = x_ + (cwidth - extents.xOff >> 1);
1315 ep->y = y + ascent; 1323 ep->y = y_ + ascent;
1316 1324
1317 if (extents.xOff == 0) 1325 if (extents.xOff == 0)
1318 ep->x = x + cwidth; 1326 ep->x = x_ + cwidth;
1319 1327
1320 ep++; 1328 ep++;
1321 } 1329 }
1322 1330
1323 x += cwidth; 1331 x_ += cwidth;
1332 }
1333
1334 if (buffered)
1324 } 1335 {
1325 1336 bool back_rendered = false;
1326 if (ep != enc) 1337 if (ep != enc)
1338 {
1339 rxvt_drawable &d2 = d.screen->scratch_drawable (w, h);
1340
1341#ifdef HAVE_BG_PIXMAP
1342 if (term->bgPixmap.pixmap)
1343 {
1344 Picture dst = 0;
1345
1346 if (bg >= 0 && term->pix_colors[bg].c.color.alpha < 0x0ff00)
1347 dst = XftDrawPicture (d2);
1348
1349 if (bg < 0 || dst != 0)
1350 {
1351 int src_x = x, src_y = y ;
1352
1353 if (term->bgPixmap.is_parentOrigin ())
1354 {
1355 src_x += term->window_vt_x;
1356 src_y += term->window_vt_y;
1357 }
1358
1359 if (term->bgPixmap.pmap_width >= src_x+w
1360 && term->bgPixmap.pmap_height >= src_y+h)
1361 {
1362 XCopyArea (disp, term->bgPixmap.pixmap, d2, gc,
1363 src_x, src_y, w, h, 0, 0);
1364 }
1365 else
1366 {
1367 XGCValues gcv;
1368
1369 gcv.fill_style = FillTiled;
1370 gcv.tile = term->bgPixmap.pixmap;
1371 gcv.ts_x_origin = -src_x;
1372 gcv.ts_y_origin = -src_y;
1373
1374 XChangeGC (disp, gc,
1375 GCTile | GCTileStipXOrigin | GCTileStipYOrigin | GCFillStyle,
1376 &gcv);
1377
1378 XFillRectangle (disp, d2, gc, 0, 0, w, h);
1379
1380 gcv.fill_style = FillSolid;
1381 XChangeGC (disp, gc, GCFillStyle, &gcv);
1382 }
1383
1384 if (bg >= 0)
1385 {
1386 Picture solid_color_pict = XftDrawSrcPicture (d2, &term->pix_colors[bg].c);
1387 XRenderComposite (disp, PictOpOver, solid_color_pict, None, dst, 0, 0, 0, 0, 0, 0, w, h);
1388 }
1389
1390 back_rendered = true;
1391 }
1392 }
1393#endif
1394
1395 if (bg >= 0 && !back_rendered)
1396 XftDrawRect (d2, &term->pix_colors[bg].c, 0, 0, w, h);
1397
1398 XftDrawGlyphSpec (d2, &term->pix_colors[fg].c, f, enc, ep - enc);
1399 XCopyArea (disp, d2, d, gc, 0, 0, w, h, x, y);
1400 }
1401 else
1402 clear_rect (d, x, y, w, h, bg);
1403 }
1404 else
1405 {
1406 clear_rect (d, x, y, w, h, bg);
1327 XftDrawGlyphSpec (d, &term->pix_colors[fg].c, f, enc, ep - enc); 1407 XftDrawGlyphSpec (d, &term->pix_colors[fg].c, f, enc, ep - enc);
1408 }
1328} 1409}
1410
1329#endif 1411#endif
1330 1412
1331///////////////////////////////////////////////////////////////////////////// 1413/////////////////////////////////////////////////////////////////////////////
1332 1414
1333rxvt_fontset::rxvt_fontset (rxvt_term *term) 1415rxvt_fontset::rxvt_fontset (rxvt_term *term)
1344void 1426void
1345rxvt_fontset::clear () 1427rxvt_fontset::clear ()
1346{ 1428{
1347 prop.width = prop.height = prop.ascent = prop.weight = prop.slant 1429 prop.width = prop.height = prop.ascent = prop.weight = prop.slant
1348 = rxvt_fontprop::unset; 1430 = rxvt_fontprop::unset;
1431 force_prop = false;
1349 1432
1350 for (rxvt_font **i = fonts.begin (); i != fonts.end (); i++) 1433 for (rxvt_font **i = fonts.begin (); i != fonts.end (); i++)
1351 FONT_UNREF (*i); 1434 FONT_UNREF (*i);
1352 1435
1353 for (pagemap **p = fmap.begin (); p != fmap.end (); p++) 1436 for (pagemap **p = fmap.begin (); p != fmap.end (); p++)
1465 if (fonts[i]->loaded) 1548 if (fonts[i]->loaded)
1466 return true; 1549 return true;
1467 1550
1468 fonts[i]->loaded = true; 1551 fonts[i]->loaded = true;
1469 1552
1470 if (!fonts[i]->load (prop)) 1553 if (!fonts[i]->load (prop, force_prop))
1471 { 1554 {
1472 fonts[i]->cs = CS_UNKNOWN; 1555 fonts[i]->cs = CS_UNKNOWN;
1473 return false; 1556 return false;
1474 } 1557 }
1475 1558

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines