]>
Commit | Line | Data |
---|---|---|
b75a7d8f A |
1 | /* |
2 | * @(#)MarkToLigaturePosnSubtables.h 1.5 00/03/15 | |
3 | * | |
4 | * (C) Copyright IBM Corp. 1998-2003 - All Rights Reserved | |
5 | * | |
6 | */ | |
7 | ||
8 | #ifndef __MARKTOLIGATUREPOSITIONINGSUBTABLES_H | |
9 | #define __MARKTOLIGATUREPOSITIONINGSUBTABLES_H | |
10 | ||
11 | /** | |
12 | * \file | |
13 | * \internal | |
14 | */ | |
15 | ||
16 | #include "LETypes.h" | |
17 | #include "LEFontInstance.h" | |
18 | #include "OpenTypeTables.h" | |
19 | #include "GlyphPositioningTables.h" | |
20 | #include "AttachmentPosnSubtables.h" | |
21 | #include "GlyphIterator.h" | |
22 | ||
23 | U_NAMESPACE_BEGIN | |
24 | ||
25 | struct MarkToLigaturePositioningSubtable : AttachmentPositioningSubtable | |
26 | { | |
27 | le_int32 process(GlyphIterator *glyphIterator, const LEFontInstance *fontInstance) const; | |
28 | LEGlyphID findLigatureGlyph(GlyphIterator *glyphIterator) const; | |
29 | }; | |
30 | ||
31 | struct ComponentRecord | |
32 | { | |
33 | Offset ligatureAnchorTableOffsetArray[ANY_NUMBER]; | |
34 | }; | |
35 | ||
36 | struct LigatureAttachTable | |
37 | { | |
38 | le_uint16 componentCount; | |
39 | ComponentRecord componentRecordArray[ANY_NUMBER]; | |
40 | }; | |
41 | ||
42 | struct LigatureArray | |
43 | { | |
44 | le_uint16 ligatureCount; | |
45 | Offset ligatureAttachTableOffsetArray[ANY_NUMBER]; | |
46 | }; | |
47 | ||
48 | U_NAMESPACE_END | |
49 | #endif | |
50 |