2000-11-28 20:56:52 +00:00
|
|
|
/*
|
2000-12-21 02:44:45 +00:00
|
|
|
* @(#)ContextualGlyphSubstProc.h 1.6 00/03/15
|
2000-11-28 20:56:52 +00:00
|
|
|
*
|
|
|
|
* (C) Copyright IBM Corp. 1998, 1999, 2000 - All Rights Reserved
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CONTEXTUALGLYPHSUBSTITUTIONPROCESSOR_H
|
|
|
|
#define __CONTEXTUALGLYPHSUBSTITUTIONPROCESSOR_H
|
|
|
|
|
|
|
|
#include "LETypes.h"
|
|
|
|
#include "MorphTables.h"
|
|
|
|
#include "SubtableProcessor.h"
|
|
|
|
#include "StateTableProcessor.h"
|
|
|
|
#include "ContextualGlyphSubstitution.h"
|
|
|
|
|
|
|
|
class ContextualGlyphSubstitutionProcessor : public StateTableProcessor
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual void beginStateTable();
|
|
|
|
|
|
|
|
virtual ByteOffset processStateEntry(LEGlyphID *glyphs, le_int32 *charIndices, le_int32 &currGlyph,
|
|
|
|
le_int32 glyphCount, EntryTableIndex index);
|
|
|
|
|
|
|
|
virtual void endStateTable();
|
|
|
|
|
|
|
|
ContextualGlyphSubstitutionProcessor(MorphSubtableHeader *morphSubtableHeader);
|
|
|
|
virtual ~ContextualGlyphSubstitutionProcessor();
|
|
|
|
|
|
|
|
private:
|
|
|
|
ContextualGlyphSubstitutionProcessor();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
ByteOffset substitutionTableOffset;
|
|
|
|
ContextualGlyphSubstitutionStateEntry *entryTable;
|
|
|
|
|
|
|
|
le_int32 markGlyph;
|
|
|
|
|
|
|
|
ContextualGlyphSubstitutionHeader *contextualGlyphSubstitutionHeader;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|