4830402fcc
X-SVN-Rev: 18406
32 lines
1.2 KiB
C++
32 lines
1.2 KiB
C++
/*
|
|
* (C) Copyright IBM Corp. 1998-2005 - All Rights Reserved
|
|
*
|
|
*/
|
|
|
|
#include "LETypes.h"
|
|
#include "LEFontInstance.h"
|
|
#include "OpenTypeTables.h"
|
|
#include "Lookups.h"
|
|
#include "GlyphDefinitionTables.h"
|
|
#include "GlyphPositioningTables.h"
|
|
#include "GlyphPosnLookupProc.h"
|
|
#include "CursiveAttachmentSubtables.h"
|
|
#include "LEGlyphStorage.h"
|
|
#include "GlyphPositionAdjustments.h"
|
|
|
|
U_NAMESPACE_BEGIN
|
|
|
|
void GlyphPositioningTableHeader::process(LEGlyphStorage &glyphStorage, GlyphPositionAdjustments *glyphPositionAdjustments, le_bool rightToLeft,
|
|
LETag scriptTag, LETag languageTag,
|
|
const GlyphDefinitionTableHeader *glyphDefinitionTableHeader,
|
|
const LEFontInstance *fontInstance, const FeatureMap *featureMap, le_int32 featureMapCount, le_bool featureOrder) const
|
|
{
|
|
GlyphPositioningLookupProcessor processor(this, scriptTag, languageTag, featureMap, featureMapCount, featureOrder);
|
|
|
|
processor.process(glyphStorage, glyphPositionAdjustments, rightToLeft, glyphDefinitionTableHeader, fontInstance);
|
|
|
|
glyphPositionAdjustments->applyCursiveAdjustments(glyphStorage, rightToLeft, fontInstance);
|
|
}
|
|
|
|
U_NAMESPACE_END
|