]> git.saurik.com Git - apple/icu.git/blame - icuSources/layout/GXLayoutEngine.h
ICU-6.2.14.tar.gz
[apple/icu.git] / icuSources / layout / GXLayoutEngine.h
CommitLineData
b75a7d8f
A
1
2/*
b75a7d8f 3 *
374ca955 4 * (C) Copyright IBM Corp. 1998-2004 - All Rights Reserved
b75a7d8f
A
5 *
6 */
7
8#ifndef __GXLAYOUTENGINE_H
9#define __GXLAYOUTENGINE_H
10
11#include "LETypes.h"
b75a7d8f
A
12#include "LayoutEngine.h"
13
14#include "MorphTables.h"
15
16U_NAMESPACE_BEGIN
17
374ca955
A
18class LEFontInstance;
19class LEGlyphStorage;
20
b75a7d8f
A
21/**
22 * This class implements layout for QuickDraw GX or Apple Advanced Typograyph (AAT)
23 * fonts. A font is a GX or AAT font if it contains a 'mort' table. See Apple's
24 * TrueType Reference Manual (http://fonts.apple.com/TTRefMan/index.html) for details.
25 * Information about 'mort' tables is in the chapter titled "Font Files."
26 *
27 * @internal
28 */
29class GXLayoutEngine : public LayoutEngine
30{
31public:
32 /**
33 * This is the main constructor. It constructs an instance of GXLayoutEngine for
34 * a particular font, script and language. It takes the 'mort' table as a parameter since
35 * LayoutEngine::layoutEngineFactory has to read the 'mort' table to know that it has a
36 * GX font.
37 *
38 * Note: GX and AAT fonts don't contain any script and language specific tables, so
39 * the script and language are ignored.
40 *
41 * @param fontInstance - the font
42 * @param scriptCode - the script
43 * @param langaugeCode - the language
44 * @param morphTable - the 'mort' table
45 *
46 * @see LayoutEngine::layoutEngineFactory
47 * @see ScriptAndLangaugeTags.h for script and language codes
48 *
49 * @internal
50 */
51 GXLayoutEngine(const LEFontInstance *fontInstance, le_int32 scriptCode, le_int32 languageCode, const MorphTableHeader *morphTable);
52
53 /**
54 * The destructor, virtual for correct polymorphic invocation.
55 *
56 * @internal
57 */
58 virtual ~GXLayoutEngine();
59
60 /**
61 * ICU "poor man's RTTI", returns a UClassID for the actual class.
62 *
374ca955 63 * @stable ICU 2.8
b75a7d8f 64 */
374ca955 65 virtual UClassID getDynamicClassID() const;
b75a7d8f
A
66
67 /**
68 * ICU "poor man's RTTI", returns a UClassID for this class.
69 *
374ca955 70 * @stable ICU 2.8
b75a7d8f 71 */
374ca955 72 static UClassID getStaticClassID();
b75a7d8f
A
73
74protected:
75
76 /**
77 * The address of the 'mort' table
78 *
79 * @internal
80 */
81 const MorphTableHeader *fMorphTable;
82
83 /**
84 * This method does GX layout using the font's 'mort' table. It converts the
85 * input character codes to glyph indices using mapCharsToGlyphs, and then
86 * applies the 'mort' table.
87 *
88 * Input parameters:
89 * @param chars - the input character context
90 * @param offset - the index of the first character to process
91 * @param count - the number of characters to process
92 * @param max - the number of characters in the input context
374ca955
A
93 * @param rightToLeft - <code>TRUE</code> if the text is in a right to left directional run
94 * @param glyphStorage - the glyph storage object. The glyph and char index arrays will be set.
b75a7d8f
A
95 *
96 * Output parameters:
b75a7d8f
A
97 * @param success - set to an error code if the operation fails
98 *
99 * @return the number of glyphs in the glyph index array
100 *
101 * @internal
102 */
103 virtual le_int32 computeGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft,
374ca955 104 LEGlyphStorage &glyphStorage, LEErrorCode &success);
b75a7d8f
A
105
106 /**
107 * This method adjusts the glyph positions using the font's
108 * 'kern', 'trak', 'bsln', 'opbd' and 'just' tables.
109 *
110 * Input parameters:
374ca955 111 * @param glyphStorage - the object holding the glyph storage. The positions will be updated as needed.
b75a7d8f
A
112 *
113 * Output parameters:
b75a7d8f
A
114 * @param success - set to an error code if the operation fails
115 *
116 * @internal
117 */
374ca955
A
118 virtual void adjustGlyphPositions(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool reverse,
119 LEGlyphStorage &glyphStorage, LEErrorCode &success);
b75a7d8f 120
b75a7d8f
A
121};
122
123U_NAMESPACE_END
124#endif
125