2000-11-28 20:56:52 +00:00
|
|
|
/*
|
2000-12-21 21:55:31 +00:00
|
|
|
* @(#)MultipleSubstSubtables.h 1.6 00/03/15
|
2000-11-28 20:56:52 +00:00
|
|
|
*
|
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 __MULTIPLESUBSTITUTIONSUBTABLES_H
|
|
|
|
#define __MULTIPLESUBSTITUTIONSUBTABLES_H
|
|
|
|
|
|
|
|
#include "LETypes.h"
|
|
|
|
#include "LEGlyphFilter.h"
|
|
|
|
#include "OpenTypeTables.h"
|
|
|
|
#include "GlyphSubstitutionTables.h"
|
|
|
|
#include "GlyphIterator.h"
|
|
|
|
|
|
|
|
struct SequenceTable
|
|
|
|
{
|
|
|
|
le_uint16 glyphCount;
|
|
|
|
LEGlyphID substituteArray[ANY_NUMBER];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct MultipleSubstitutionSubtable : GlyphSubstitutionSubtable
|
|
|
|
{
|
|
|
|
le_uint16 sequenceCount;
|
|
|
|
Offset sequenceTableOffsetArray[ANY_NUMBER];
|
|
|
|
|
2001-01-19 00:30:17 +00:00
|
|
|
le_uint32 process(GlyphIterator *glyphIterator, const LEGlyphFilter *filter = NULL) const;
|
2000-11-28 20:56:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|