// -*- mode: C++; indent-tabs-mode: nil; -*- #ifndef __Font_hh #define __Font_hh extern "C" { #include #define _XFT_NO_COMPAT_ // no Xft 1 API #include } #include #include namespace otk { class BGCCache; class BGCCacheItem; class BColor; class ScreenInfo; class BFont { /* * static members */ private: static std::string _fallback_font; static bool _xft_init; public: // the fallback is only used for X fonts, not for Xft fonts, since it is // assumed that X fonts will be the fallback from Xft. inline static std::string fallbackFont(void) { return _fallback_font; } inline static void setFallbackFont(const std::string &f) { _fallback_font = f; } /* * instance members */ private: int _screen_num; std::string _fontstring; bool _shadow; unsigned char _offset; unsigned char _tint; XftFont *_xftfont; bool createXftFont(void); public: // loads an Xft font BFont(int screen_num, const std::string &fontstring, bool shadow, unsigned char offset, unsigned char tint); virtual ~BFont(); inline const std::string &fontstring() const { return _fontstring; } unsigned int height() const; unsigned int maxCharWidth() const; unsigned int measureString(const std::string &string, bool utf8 = false) const; //! Draws a string into an XftDraw object /*! Be Warned: If you use an XftDraw object and a color, or a font from different screens, you WILL have unpredictable results! :) */ void drawString(XftDraw *d, int x, int y, const BColor &color, const std::string &string, bool utf8 = false) const; }; } #endif // __Font_hh