sl@0
|
1 |
/*
|
sl@0
|
2 |
*
|
sl@0
|
3 |
* (C) Copyright IBM Corp. 1998-2004 - All Rights Reserved
|
sl@0
|
4 |
*
|
sl@0
|
5 |
*/
|
sl@0
|
6 |
|
sl@0
|
7 |
#ifndef __GLYPHPOSITIONINGLOOKUPPROCESSOR_H
|
sl@0
|
8 |
#define __GLYPHPOSITIONINGLOOKUPPROCESSOR_H
|
sl@0
|
9 |
|
sl@0
|
10 |
/**
|
sl@0
|
11 |
* \file
|
sl@0
|
12 |
* \internal
|
sl@0
|
13 |
*/
|
sl@0
|
14 |
|
sl@0
|
15 |
#include "LETypes.h"
|
sl@0
|
16 |
#include "LEFontInstance.h"
|
sl@0
|
17 |
#include "OpenTypeTables.h"
|
sl@0
|
18 |
#include "Lookups.h"
|
sl@0
|
19 |
#include "Features.h"
|
sl@0
|
20 |
#include "GlyphDefinitionTables.h"
|
sl@0
|
21 |
#include "GlyphPositioningTables.h"
|
sl@0
|
22 |
#include "GlyphIterator.h"
|
sl@0
|
23 |
#include "LookupProcessor.h"
|
sl@0
|
24 |
|
sl@0
|
25 |
U_NAMESPACE_BEGIN
|
sl@0
|
26 |
|
sl@0
|
27 |
class GlyphPositioningLookupProcessor : public LookupProcessor
|
sl@0
|
28 |
{
|
sl@0
|
29 |
public:
|
sl@0
|
30 |
GlyphPositioningLookupProcessor(const GlyphPositioningTableHeader *glyphPositioningTableHeader,
|
sl@0
|
31 |
LETag scriptTag, LETag languageTag, const LETag *featureOrder);
|
sl@0
|
32 |
|
sl@0
|
33 |
virtual ~GlyphPositioningLookupProcessor();
|
sl@0
|
34 |
|
sl@0
|
35 |
virtual le_uint32 applySubtable(const LookupSubtable *lookupSubtable,
|
sl@0
|
36 |
le_uint16 lookupType, GlyphIterator *glyphIterator,
|
sl@0
|
37 |
const LEFontInstance *fontInstance, LEErrorCode& success) const;
|
sl@0
|
38 |
|
sl@0
|
39 |
protected:
|
sl@0
|
40 |
GlyphPositioningLookupProcessor();
|
sl@0
|
41 |
|
sl@0
|
42 |
private:
|
sl@0
|
43 |
|
sl@0
|
44 |
GlyphPositioningLookupProcessor(const GlyphPositioningLookupProcessor &other); // forbid copying of this class
|
sl@0
|
45 |
GlyphPositioningLookupProcessor &operator=(const GlyphPositioningLookupProcessor &other); // forbid copying of this class
|
sl@0
|
46 |
};
|
sl@0
|
47 |
|
sl@0
|
48 |
U_NAMESPACE_END
|
sl@0
|
49 |
#endif
|