X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=otk%2Ffont.hh;h=618d4f6ebb99cd38a5c768c40b7f6b75c5b061ff;hb=8269fc2b3965d12ba308caa554bfa7ee037fba13;hp=8e736d8eb746c3958c3b24ddd41ead0c4ec2f92f;hpb=74061b4e2d33d7e2101c4edda26cfc2a1294f32b;p=chaz%2Fopenbox diff --git a/otk/font.hh b/otk/font.hh index 8e736d8e..618d4f6e 100644 --- a/otk/font.hh +++ b/otk/font.hh @@ -2,7 +2,8 @@ #ifndef __font_hh #define __font_hh -#include "userstring.hh" +#include "ustring.hh" +#include "truerendercontrol.hh" extern "C" { #include @@ -10,13 +11,12 @@ extern "C" { #include } -#include - -#include +#include namespace otk { class Color; +class Surface; class Font { /* @@ -57,27 +57,14 @@ public: inline const std::string &fontstring() const { return _fontstring; } - unsigned int height() const; - unsigned int maxCharWidth() const; - - //! Measures the length of a string - /*! - @param string The string to measure, it should be UTF8 encoded. - */ - unsigned int measureString(const userstring &string) 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! :) - @param d The drawable to render into. - @param x The X offset onto the drawable at which to start drawing. - @param x The Y offset onto the drawable at which to start drawing. - @param color The color to use for drawing the text. - @param string The string to draw, it should be UTF8 encoded. - */ - void drawString(XftDraw *d, int x, int y, const Color &color, - const userstring &string) const; + int height() const; + int maxCharWidth() const; + + int measureString(const ustring &string) const; + + // The RenderControl classes use the internal data to render the fonts, but + // noone else needs it, so its private. + friend class RenderControl; }; }