summaryrefslogtreecommitdiff
path: root/src/Font.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/Font.hh')
-rw-r--r--src/Font.hh5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Font.hh b/src/Font.hh
index e29f41b1..8f3856b6 100644
--- a/src/Font.hh
+++ b/src/Font.hh
@@ -72,6 +72,8 @@ private:
#ifdef XFT
bool _antialias;
bool _shadow;
+ unsigned char _offset;
+ unsigned char _tint;
XftFont *_xftfont;
@@ -96,7 +98,8 @@ public:
#ifdef XFT
// loads an Xft font
BFont(Display *d, BScreen *screen, const std::string &family, int size,
- bool bold, bool italic, bool shadow, bool antialias = True);
+ bool bold, bool italic, bool shadow, unsigned char offset,
+ unsigned char tint, bool antialias = True);
#endif
// loads a standard X font
BFont(Display *d, BScreen *screen, const std::string &xlfd);