~ubuntu-branches/ubuntu/gutsy/icu/gutsy-updates

« back to all changes in this revision

Viewing changes to source/layout/MarkToLigaturePosnSubtables.h

  • Committer: Package Import Robot
  • Author(s): Jay Berkenbilt
  • Date: 2005-11-19 11:29:31 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20051119112931-vcizkrp10tli4enw
Tags: 3.4-3
Explicitly build with g++ 3.4.  The current ICU fails its test suite
with 4.0 but not with 3.4.  Future versions should work properly with
4.0.

Show diffs side-by-side

added added

removed removed

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