61607c2773
X-SVN-Rev: 38848
53 lines
1.5 KiB
C
53 lines
1.5 KiB
C
// Copyright (C) 2016 and later: Unicode, Inc. and others.
|
|
// License & terms of use: http://www.unicode.org/copyright.html
|
|
/*
|
|
*
|
|
* (C) Copyright IBM Corp. 1998-2013 - All Rights Reserved
|
|
*
|
|
*/
|
|
|
|
#ifndef __SINGLEPOSITIONINGSUBTABLES_H
|
|
#define __SINGLEPOSITIONINGSUBTABLES_H
|
|
|
|
/**
|
|
* \file
|
|
* \internal
|
|
*/
|
|
|
|
#include "LETypes.h"
|
|
#include "LEFontInstance.h"
|
|
#include "OpenTypeTables.h"
|
|
#include "GlyphPositioningTables.h"
|
|
#include "ValueRecords.h"
|
|
#include "GlyphIterator.h"
|
|
|
|
U_NAMESPACE_BEGIN
|
|
|
|
struct SinglePositioningSubtable : GlyphPositioningSubtable
|
|
{
|
|
le_uint32 process(const LEReferenceTo<SinglePositioningSubtable> &base, GlyphIterator *glyphIterator, const LEFontInstance *fontInstance, LEErrorCode &success) const;
|
|
};
|
|
|
|
struct SinglePositioningFormat1Subtable : SinglePositioningSubtable
|
|
{
|
|
ValueFormat valueFormat;
|
|
ValueRecord valueRecord;
|
|
|
|
le_uint32 process(const LEReferenceTo<SinglePositioningFormat1Subtable> &base, GlyphIterator *glyphIterator, const LEFontInstance *fontInstance, LEErrorCode &success) const;
|
|
};
|
|
|
|
struct SinglePositioningFormat2Subtable : SinglePositioningSubtable
|
|
{
|
|
ValueFormat valueFormat;
|
|
le_uint16 valueCount;
|
|
ValueRecord valueRecordArray[ANY_NUMBER];
|
|
|
|
le_uint32 process(const LEReferenceTo<SinglePositioningFormat2Subtable> &base, GlyphIterator *glyphIterator, const LEFontInstance *fontInstance, LEErrorCode &success) const;
|
|
};
|
|
LE_VAR_ARRAY(SinglePositioningFormat2Subtable, valueRecordArray)
|
|
|
|
U_NAMESPACE_END
|
|
#endif
|
|
|
|
|