2000-11-28 20:56:52 +00:00
|
|
|
/*
|
|
|
|
* %W% %E%
|
|
|
|
*
|
|
|
|
* (C) Copyright IBM Corp. 1998, 1999, 2000 - All Rights Reserved
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __HEBREWSHAPING_H
|
|
|
|
#define __HEBREWSHAPING_H
|
|
|
|
|
|
|
|
#include "LETypes.h"
|
|
|
|
#include "OpenTypeTables.h"
|
|
|
|
|
2001-10-16 00:39:01 +00:00
|
|
|
U_NAMESPACE_BEGIN
|
|
|
|
|
2002-06-29 00:04:16 +00:00
|
|
|
class HebrewShaping /* not : public UObject because all methods are static */ {
|
2000-11-28 20:56:52 +00:00
|
|
|
public:
|
|
|
|
static void shape(const LEUnicode *chars, le_int32 offset, le_int32 charCount, le_int32 charMax,
|
|
|
|
le_bool rightToLeft, const LETag **tags);
|
|
|
|
|
2002-03-27 23:22:21 +00:00
|
|
|
static const le_uint8 glyphSubstitutionTable[];
|
|
|
|
static const le_uint8 glyphDefinitionTable[];
|
2002-06-29 00:04:16 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
// forbid instantiation
|
|
|
|
HebrewShaping();
|
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
|