2002-06-10 23:40:33 +00:00
|
|
|
/*
|
|
|
|
*
|
2005-01-14 17:25:11 +00:00
|
|
|
* (C) Copyright IBM Corp. 1998-2005 - All Rights Reserved
|
2002-06-10 23:40:33 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CURSIVEATTACHMENTSUBTABLES_H
|
|
|
|
#define __CURSIVEATTACHMENTSUBTABLES_H
|
|
|
|
|
2003-01-13 23:15:11 +00:00
|
|
|
/**
|
|
|
|
* \file
|
|
|
|
* \internal
|
|
|
|
*/
|
|
|
|
|
2002-06-10 23:40:33 +00:00
|
|
|
#include "LETypes.h"
|
|
|
|
#include "OpenTypeTables.h"
|
|
|
|
#include "GlyphPositioningTables.h"
|
|
|
|
|
|
|
|
U_NAMESPACE_BEGIN
|
|
|
|
|
2005-01-14 17:25:11 +00:00
|
|
|
class LEFontInstance;
|
|
|
|
class GlyphIterator;
|
|
|
|
|
2002-06-10 23:40:33 +00:00
|
|
|
struct EntryExitRecord
|
|
|
|
{
|
|
|
|
Offset entryAnchor;
|
|
|
|
Offset exitAnchor;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct CursiveAttachmentSubtable : GlyphPositioningSubtable
|
|
|
|
{
|
|
|
|
le_uint16 entryExitCount;
|
|
|
|
EntryExitRecord entryExitRecords[ANY_NUMBER];
|
|
|
|
|
|
|
|
le_uint32 process(GlyphIterator *glyphIterator, const LEFontInstance *fontInstance) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
U_NAMESPACE_END
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|