]> Dogcows Code - chaz/openbox/blobdiff - src/Font.cc
Allow for customizing of the dropShadows.
[chaz/openbox] / src / Font.cc
index fd7a0fbe3bb47111ca3aa650c53f62796f18a4a9..e2649f10ae3e056ac7609e233cff365ef6e37b07 100644 (file)
@@ -48,7 +48,8 @@ string      BFont::_fallback_font   = "fixed";
 
 #ifdef XFT
 BFont::BFont(Display *d, BScreen *screen, const string &family, int size,
-             bool bold, bool italic, bool shadow, bool antialias) :
+             bool bold, bool italic, bool shadow, unsigned char offset, 
+             unsigned char tint, bool antialias) :
                                           _display(d),
                                           _screen(screen),
                                           _family(family),
@@ -58,6 +59,8 @@ BFont::BFont(Display *d, BScreen *screen, const string &family, int size,
                                           _italic(italic),
                                           _antialias(antialias),
                                           _shadow(shadow),
+                                          _offset(offset),
+                                          _tint(tint),
                                           _xftfont(0),
                                           _font(0),
                                           _fontset(0),
@@ -267,7 +270,7 @@ void BFont::drawString(Drawable d, int x, int y, const BColor &color,
       c.color.red = 0;
       c.color.green = 0;
       c.color.blue = 0;
-      c.color.alpha = 0x40 | 0x40 << 8; // transparent shadow
+      c.color.alpha = _tint | _tint << 8; // transparent shadow
       c.pixel = BlackPixel(_display, _screen->getScreenNumber());
 
 #ifdef XFT_UTF8
@@ -275,8 +278,9 @@ void BFont::drawString(Drawable d, int x, int y, const BColor &color,
 #else
       XftDrawString8(
 #endif
-                     draw, &c, _xftfont, x + 1, _xftfont->ascent + y + 1,
-                     (XftChar8 *) string.c_str(), string.size());
+                     draw, &c, _xftfont, x + _offset, 
+                     _xftfont->ascent + y + _offset, (XftChar8 *) string.c_str(), 
+                     string.size());
     }
     
     XftColor c;
This page took 0.021267 seconds and 4 git commands to generate.