2000-11-28 20:56:52 +00:00
|
|
|
/*
|
|
|
|
* %W% %E%
|
|
|
|
*
|
2001-01-19 00:30:17 +00:00
|
|
|
* (C) Copyright IBM Corp. 1998, 1999, 2000, 2001 - All Rights Reserved
|
2000-11-28 20:56:52 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __LOOKUPPROCESSOR_H
|
|
|
|
#define __LOOKUPPROCESSOR_H
|
|
|
|
|
|
|
|
#include "LETypes.h"
|
|
|
|
#include "LEFontInstance.h"
|
|
|
|
#include "OpenTypeTables.h"
|
|
|
|
#include "Lookups.h"
|
|
|
|
#include "Features.h"
|
|
|
|
#include "GlyphDefinitionTables.h"
|
|
|
|
#include "GlyphPositionAdjustments.h"
|
|
|
|
#include "GlyphIterator.h"
|
|
|
|
|
2001-10-16 00:39:01 +00:00
|
|
|
U_NAMESPACE_BEGIN
|
|
|
|
|
2002-06-27 01:19:20 +00:00
|
|
|
class LookupProcessor : public UObject {
|
2000-11-28 20:56:52 +00:00
|
|
|
public:
|
2002-03-27 00:34:56 +00:00
|
|
|
static const LETag notSelected;
|
|
|
|
static const LETag defaultFeature;
|
2000-11-28 20:56:52 +00:00
|
|
|
|
|
|
|
void process(LEGlyphID *glyphs, GlyphPositionAdjustment *glyphPositionAdjustments, const LETag **glyphTags, le_int32 glyphCount,
|
2001-01-19 00:30:17 +00:00
|
|
|
le_bool rightToLeft, const GlyphDefinitionTableHeader *glyphDefinitionTableHeader, const LEFontInstance *fontInstance) const;
|
2000-11-28 20:56:52 +00:00
|
|
|
|
2001-01-19 00:30:17 +00:00
|
|
|
le_uint32 applyLookupTable(const LookupTable *lookupTable, GlyphIterator *glyphIterator, const LEFontInstance *fontInstance) const;
|
2000-11-28 20:56:52 +00:00
|
|
|
|
2001-01-19 00:30:17 +00:00
|
|
|
le_uint32 applySingleLookup(le_uint16 lookupTableIndex, GlyphIterator *glyphIterator, const LEFontInstance *fontInstance) const;
|
2000-11-28 20:56:52 +00:00
|
|
|
|
2001-01-19 00:30:17 +00:00
|
|
|
virtual le_uint32 applySubtable(const LookupSubtable *lookupSubtable, le_uint16 subtableType,
|
|
|
|
GlyphIterator *glyphIterator, const LEFontInstance *fontInstance) const = 0;
|
2000-11-28 20:56:52 +00:00
|
|
|
|
|
|
|
virtual ~LookupProcessor();
|
|
|
|
|
2002-06-29 00:04:16 +00:00
|
|
|
/**
|
|
|
|
* ICU "poor man's RTTI", returns a UClassID for the actual class.
|
|
|
|
*
|
|
|
|
* @draft ICU 2.2
|
|
|
|
*/
|
|
|
|
virtual inline UClassID getDynamicClassID() const { return getStaticClassID(); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ICU "poor man's RTTI", returns a UClassID for this class.
|
|
|
|
*
|
|
|
|
* @draft ICU 2.2
|
|
|
|
*/
|
|
|
|
static inline UClassID getStaticClassID() { return (UClassID)&fgClassID; }
|
|
|
|
|
2000-11-28 20:56:52 +00:00
|
|
|
protected:
|
2001-01-19 00:30:17 +00:00
|
|
|
LookupProcessor(const char *baseAddress,
|
2000-11-28 20:56:52 +00:00
|
|
|
Offset scriptListOffset, Offset featureListOffset, Offset lookupListOffset,
|
2002-03-01 22:24:10 +00:00
|
|
|
LETag scriptTag, LETag languageTag, const LETag *featureOrder);
|
2000-11-28 20:56:52 +00:00
|
|
|
|
|
|
|
LookupProcessor();
|
|
|
|
|
2002-03-14 21:51:40 +00:00
|
|
|
le_int32 selectLookups(const FeatureTable *featureTable, LETag featureTag, le_int32 order);
|
2000-11-28 20:56:52 +00:00
|
|
|
|
2002-03-27 00:34:56 +00:00
|
|
|
const LookupListTable *lookupListTable;
|
|
|
|
const FeatureListTable *featureListTable;
|
2000-11-28 20:56:52 +00:00
|
|
|
|
2002-03-27 00:34:56 +00:00
|
|
|
LETag *lookupSelectArray;
|
|
|
|
LETag requiredFeatureTag;
|
2002-03-01 22:24:10 +00:00
|
|
|
|
|
|
|
le_uint16 *lookupOrderArray;
|
|
|
|
le_uint32 lookupOrderCount;
|
2002-06-29 00:04:16 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The address of this static class variable serves as this class's ID
|
|
|
|
* for ICU "poor man's RTTI".
|
|
|
|
*/
|
|
|
|
static const char fgClassID;
|
2000-11-28 20:56:52 +00:00
|
|
|
};
|
|
|
|
|
2001-10-16 00:39:01 +00:00
|
|
|
U_NAMESPACE_END
|
2000-11-28 20:56:52 +00:00
|
|
|
#endif
|