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