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.125 by ayin, Sun Nov 25 11:23:18 2007 UTC vs.
Revision 1.134 by root, Wed Jan 23 09:42:02 2008 UTC

19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 *---------------------------------------------------------------------*/ 20 *---------------------------------------------------------------------*/
21 21
22#include "../config.h" 22#include "../config.h"
23#include "rxvt.h" 23#include "rxvt.h"
24#include "rxvtlib.h"
25#include "rxvtutil.h" 24#include "rxvtutil.h"
26#include "rxvtfont.h" 25#include "rxvtfont.h"
27 26
28#include <cstdlib> 27#include <cstdlib>
29 28
238 XClearArea (disp, d, x, y, w, h, false); 237 XClearArea (disp, d, x, y, w, h, false);
239 else if (color >= 0) 238 else if (color >= 0)
240 { 239 {
241#if XFT 240#if XFT
242 bool done = false; 241 bool done = false;
242
243#ifdef HAVE_BG_PIXMAP 243# ifdef HAVE_BG_PIXMAP
244 if (term->bgPixmap.pixmap && color >= 0 && term->pix_colors[color].c.color.alpha < 0x0ff00) 244 if (term->bgPixmap.pixmap && color >= 0 && !term->pix_colors[color].is_opaque ())
245 { 245 {
246 Picture dst = XftDrawPicture (d); 246 Picture dst = XftDrawPicture (d);
247
247 if (dst != 0) 248 if (dst != 0)
248 { 249 {
249 XClearArea (disp, d, x, y, w, h, false); 250 XClearArea (disp, d, x, y, w, h, false);
250 Picture solid_color_pict = XftDrawSrcPicture (d, &term->pix_colors[color].c); 251 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 XRenderComposite (disp, PictOpOver, solid_color_pict, None, dst, 0, 0, 0, 0, x, y, w, h);
252 done = true; 253 done = true;
253 } 254 }
254 } 255 }
255#endif 256# endif
256 if (!done) 257 if (!done)
257 XftDrawRect (d, &term->pix_colors[color].c, x, y, w, h); 258 XftDrawRect (d, &term->pix_colors[color].c, x, y, w, h);
259
258#else 260#else
259 XSetForeground (disp, gc, term->pix_colors[color]); 261 XSetForeground (disp, gc, term->pix_colors[color]);
260 XFillRectangle (disp, d, gc, x, y, w, h); 262 XFillRectangle (disp, d, gc, x, y, w, h);
261#endif 263#endif
262 } 264 }
632 634
633 if (slashes >= 13 && (!old || *field == old)) 635 if (slashes >= 13 && (!old || *field == old))
634 { 636 {
635 size_t len = field - name; 637 size_t len = field - name;
636 *ptr = (char *)malloc (len + strlen (replace) + strlen (end) + 1); 638 *ptr = (char *)malloc (len + strlen (replace) + strlen (end) + 1);
637 strncpy (*ptr, name, len); 639 memcpy (*ptr, name, len);
638 strcpy (*ptr + len, replace); 640 strcpy (*ptr + len, replace);
639 strcat (*ptr, end); 641 strcat (*ptr, end);
640 642
641 return true; 643 return true;
642 } 644 }
1297 dTermGC; 1299 dTermGC;
1298 1300
1299 int w = term->fwidth * len; 1301 int w = term->fwidth * len;
1300 int h = term->fheight; 1302 int h = term->fheight;
1301 1303
1302 /* TODO: this logic needs some more thinking, since we no longer do pseudo-transparency. 1304 /*
1303 * Maybe make buffering into a resource flag? Compile time option doesn't seems like a 1305 * Maybe make buffering into a resource flag? Compile time option doesn't seems like a
1304 * good idea from the perspective of packaging for wide variety of user configs. 1306 * good idea from the perspective of packaging for wide variety of user configs.
1305 */ 1307 */
1306 bool buffered = true 1308 bool buffered = bg >= Color_transparent;
1307#ifdef FORCE_UNBUFFERED_XFT 1309#ifdef FORCE_UNBUFFERED_XFT
1308 && bg >= 0 1310 buffered = false;
1309#endif 1311#endif
1310 ; 1312
1311 // cut trailing spaces 1313 // cut trailing spaces
1312 while (len && text [len - 1] == ' ') 1314 while (len && text [len - 1] == ' ')
1313 len--; 1315 len--;
1314 1316
1315 int x_ = buffered ? 0 : x; 1317 int x_ = buffered ? 0 : x;
1341 x_ += cwidth; 1343 x_ += cwidth;
1342 } 1344 }
1343 1345
1344 if (buffered) 1346 if (buffered)
1345 { 1347 {
1346 bool back_rendered = false;
1347 if (ep != enc) 1348 if (ep != enc)
1348 { 1349 {
1350 bool back_rendered = false;
1349 rxvt_drawable &d2 = d.screen->scratch_drawable (w, h); 1351 rxvt_drawable &d2 = d.screen->scratch_drawable (w, h);
1350 1352
1351#ifdef HAVE_BG_PIXMAP 1353#ifdef HAVE_BG_PIXMAP
1354
1352 if (term->bgPixmap.pixmap) 1355 if (term->bgPixmap.pixmap
1356 && !(bg >= 0 && term->pix_colors[bg].is_opaque ()))
1353 { 1357 {
1354 Picture dst = 0;
1355
1356 if (bg >= 0 && term->pix_colors[bg].c.color.alpha < 0x0ff00)
1357 dst = XftDrawPicture (d2); 1358 Picture dst = XftDrawPicture (d2);
1358 1359
1359 if (bg < 0 || dst != 0) 1360 int src_x = x, src_y = y;
1361
1362 if (term->bgPixmap.is_parentOrigin ())
1360 { 1363 {
1361 int src_x = x, src_y = y ;
1362
1363 if (term->bgPixmap.is_parentOrigin ())
1364 {
1365 src_x += term->window_vt_x; 1364 src_x += term->window_vt_x;
1366 src_y += term->window_vt_y; 1365 src_y += term->window_vt_y;
1367 }
1368
1369 if (term->bgPixmap.pmap_width >= src_x+w
1370 && term->bgPixmap.pmap_height >= src_y+h)
1371 {
1372 XCopyArea (disp, term->bgPixmap.pixmap, d2, gc,
1373 src_x, src_y, w, h, 0, 0);
1374 }
1375 else
1376 {
1377 XGCValues gcv;
1378
1379 gcv.fill_style = FillTiled;
1380 gcv.tile = term->bgPixmap.pixmap;
1381 gcv.ts_x_origin = -src_x;
1382 gcv.ts_y_origin = -src_y;
1383
1384 XChangeGC (disp, gc,
1385 GCTile | GCTileStipXOrigin | GCTileStipYOrigin | GCFillStyle,
1386 &gcv);
1387
1388 XFillRectangle (disp, d2, gc, 0, 0, w, h);
1389
1390 gcv.fill_style = FillSolid;
1391 XChangeGC (disp, gc, GCFillStyle, &gcv);
1392 }
1393
1394 if (bg >= 0)
1395 {
1396 Picture solid_color_pict = XftDrawSrcPicture (d2, &term->pix_colors[bg].c);
1397 XRenderComposite (disp, PictOpOver, solid_color_pict, None, dst, 0, 0, 0, 0, 0, 0, w, h);
1398 }
1399
1400 back_rendered = true;
1401 } 1366 }
1367
1368 if (term->bgPixmap.pmap_width >= src_x+w
1369 && term->bgPixmap.pmap_height >= src_y+h)
1370 {
1371 XCopyArea (disp, term->bgPixmap.pixmap, d2, gc,
1372 src_x, src_y, w, h, 0, 0);
1373 }
1374 else
1375 {
1376 XGCValues gcv;
1377
1378 gcv.fill_style = FillTiled;
1379 gcv.tile = term->bgPixmap.pixmap;
1380 gcv.ts_x_origin = -src_x;
1381 gcv.ts_y_origin = -src_y;
1382
1383 XChangeGC (disp, gc,
1384 GCTile | GCTileStipXOrigin | GCTileStipYOrigin | GCFillStyle,
1385 &gcv);
1386
1387 XFillRectangle (disp, d2, gc, 0, 0, w, h);
1388
1389 gcv.fill_style = FillSolid;
1390 XChangeGC (disp, gc, GCFillStyle, &gcv);
1391 }
1392
1393 if (bg >= 0 && dst) // colour must be (and is) non-opaque here
1394 {
1395 Picture solid_color_pict = XftDrawSrcPicture (d2, &term->pix_colors[bg].c);
1396 XRenderComposite (disp, PictOpOver, solid_color_pict, None, dst, 0, 0, 0, 0, 0, 0, w, h);
1397 }
1398
1399 back_rendered = true;
1402 } 1400 }
1403#endif 1401#endif
1404 1402
1405 if (bg >= 0 && !back_rendered) 1403 if (!back_rendered)
1406 XftDrawRect (d2, &term->pix_colors[bg].c, 0, 0, w, h); 1404 XftDrawRect (d2, &term->pix_colors[bg < 0 ? Color_bg : bg].c, 0, 0, w, h);
1407 1405
1408 XftDrawGlyphSpec (d2, &term->pix_colors[fg].c, f, enc, ep - enc); 1406 XftDrawGlyphSpec (d2, &term->pix_colors[fg].c, f, enc, ep - enc);
1409 XCopyArea (disp, d2, d, gc, 0, 0, w, h, x, y); 1407 XCopyArea (disp, d2, d, gc, 0, 0, w, h, x, y);
1410 } 1408 }
1411 else 1409 else
1533 if (!end) 1531 if (!end)
1534 end = desc + strlen (desc); 1532 end = desc + strlen (desc);
1535 1533
1536 if (end - desc < 511) 1534 if (end - desc < 511)
1537 { 1535 {
1538 strncpy (buf, desc, end - desc); 1536 memcpy (buf, desc, end - desc);
1539 buf[end - desc] = 0; 1537 buf[end - desc] = 0;
1540 1538
1541 fonts.push_back (new_font (buf, cs)); 1539 fonts.push_back (new_font (buf, cs));
1542 } 1540 }
1543 else 1541 else

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines