scuffed-code/icu4c/source/samples/layout/GnomeFontMap.h
2003-03-03 23:07:01 +00:00

38 lines
941 B
C++

/*
******************************************************************************
* Copyright (C) 1998-2001, International Business Machines Corporation and *
* others. All Rights Reserved. *
******************************************************************************
*/
#ifndef __GNOMEFONTMAP_H
#define __GNOMEFONTMAP_H
#include "freetype/freetype.h"
#include "unicode/uscript.h"
#include "layout/LETypes.h"
#include "layout/LEFontInstance.h"
#include "GUISupport.h"
#include "FontMap.h"
#define BUFFER_SIZE 128
class GnomeFontMap : public FontMap
{
public:
GnomeFontMap(TT_Engine engine, const char *fileName, le_int16 pointSize, GUISupport *guiSupport, LEErrorCode &status);
virtual ~GnomeFontMap();
protected:
virtual const LEFontInstance *openFont(const char *fontName, le_int16 pointSize, LEErrorCode &status);
private:
TT_Engine fEngine;
};
#endif