#ifndef ROOT_TGX11TTF
#define ROOT_TGX11TTF
#ifndef ROOT_TGX11
#include "TGX11.h"
#endif
#ifndef ROOT_TTF
#include "TTF.h"
#endif
#ifndef ROOT_RConfigure
#include "RConfigure.h"
#endif
#ifdef R__HAS_XFT
class TXftFontHash;
#endif
class TGX11TTF : public TGX11 {
private:
enum EAlign { kNone, kTLeft, kTCenter, kTRight, kMLeft, kMCenter, kMRight,
kBLeft, kBCenter, kBRight };
FT_Vector fAlign;
#ifdef R__HAS_XFT
TXftFontHash *fXftFontHash;
#endif
void Align(void);
void DrawImage(FT_Bitmap *source, ULong_t fore, ULong_t back, XImage *xim,
Int_t bx, Int_t by);
Bool_t IsVisible(Int_t x, Int_t y, UInt_t w, UInt_t h);
XImage *GetBackground(Int_t x, Int_t y, UInt_t w, UInt_t h);
void RenderString(Int_t x, Int_t y, ETextMode mode);
public:
TGX11TTF(const TGX11 &org);
virtual ~TGX11TTF() { }
Bool_t Init(void *display);
void DrawText(Int_t x, Int_t y, Float_t angle, Float_t mgn,
const char *text, ETextMode mode);
void SetTextFont(Font_t fontnumber);
Int_t SetTextFont(char *fontname, ETextSetMode mode);
void SetTextSize(Float_t textsize);
#ifdef R__HAS_XFT
FontStruct_t LoadQueryFont(const char *font_name);
void DeleteFont(FontStruct_t fs);
void DrawString(Drawable_t id, GContext_t gc, Int_t x, Int_t y, const char *s, Int_t len);
Int_t TextWidth(FontStruct_t font, const char *s, Int_t len);
void GetFontProperties(FontStruct_t font, Int_t &max_ascent, Int_t &max_descent);
#endif
static void Activate();
ClassDef(TGX11TTF,0)
};
#endif