2000-11-28 20:56:52 +00:00
|
|
|
/*
|
|
|
|
* %W% %E%
|
|
|
|
*
|
2001-01-19 00:30:17 +00:00
|
|
|
* (C) Copyright IBM Corp. 1998, 1999, 2000, 2001 - All Rights Reserved
|
2000-11-28 20:56:52 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GLYPHSUBSTITUTIONLOOKUPPROCESSOR_H
|
|
|
|
#define __GLYPHSUBSTITUTIONLOOKUPPROCESSOR_H
|
|
|
|
|
|
|
|
#include "LETypes.h"
|
|
|
|
#include "LEGlyphFilter.h"
|
|
|
|
#include "LEFontInstance.h"
|
|
|
|
#include "OpenTypeTables.h"
|
|
|
|
#include "Lookups.h"
|
|
|
|
#include "Features.h"
|
|
|
|
#include "GlyphDefinitionTables.h"
|
|
|
|
#include "GlyphSubstitutionTables.h"
|
|
|
|
#include "GlyphIterator.h"
|
|
|
|
#include "LookupProcessor.h"
|
|
|
|
|
|
|
|
class GlyphSubstitutionLookupProcessor : public LookupProcessor
|
|
|
|
{
|
|
|
|
public:
|
2001-01-19 00:30:17 +00:00
|
|
|
GlyphSubstitutionLookupProcessor(const GlyphSubstitutionTableHeader *glyphSubstitutionTableHeader,
|
|
|
|
LETag scriptTag, LETag languageTag, const LEGlyphFilter *filter = NULL);
|
2000-11-28 20:56:52 +00:00
|
|
|
|
|
|
|
virtual ~GlyphSubstitutionLookupProcessor();
|
|
|
|
|
2001-01-19 00:30:17 +00:00
|
|
|
virtual le_uint32 applySubtable(const LookupSubtable *lookupSubtable, le_uint16 lookupType, GlyphIterator *glyphIterator,
|
|
|
|
const LEFontInstance *fontInstance) const;
|
2000-11-28 20:56:52 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
GlyphSubstitutionLookupProcessor();
|
|
|
|
|
|
|
|
private:
|
2001-01-19 00:30:17 +00:00
|
|
|
const LEGlyphFilter *fFilter;
|
2000-11-28 20:56:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|