blob: b2c9b730a1948e4910a226ade0fbd522a3720def [file] [log] [blame]
/*
******************************************************************************
* Copyright (C) 1998-2001, International Business Machines Corporation and *
* others. All Rights Reserved. *
******************************************************************************
*/
#include <windows.h>
#include "RenderingFontInstance.h"
#include "GDIFontInstance.h"
#include "GUISupport.h"
#include "FontMap.h"
#include "GDIFontMap.h"
GDIFontMap::GDIFontMap(GDISurface *surface, const char *fileName, le_int16 pointSize, GUISupport *guiSupport, RFIErrorCode &status)
: FontMap(fileName, pointSize, guiSupport, status), fSurface(surface)
{
// nothing to do?
}
GDIFontMap::~GDIFontMap()
{
// anything?
}
const RenderingFontInstance *GDIFontMap::openFont(const char *fontName, le_int16 pointSize, RFIErrorCode &status)
{
return new GDIFontInstance(fSurface, fontName, pointSize, status);
}