2000-11-28 20:56:52 +00:00
|
|
|
/*
|
|
|
|
*
|
2004-05-07 23:29:16 +00:00
|
|
|
* (C) Copyright IBM Corp. 1998-2004 - All Rights Reserved
|
2000-11-28 20:56:52 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ARABICSHAPING_H
|
|
|
|
#define __ARABICSHAPING_H
|
|
|
|
|
2003-01-13 23:15:11 +00:00
|
|
|
/**
|
|
|
|
* \file
|
|
|
|
* \internal
|
|
|
|
*/
|
|
|
|
|
2000-11-28 20:56:52 +00:00
|
|
|
#include "LETypes.h"
|
|
|
|
#include "OpenTypeTables.h"
|
|
|
|
|
2001-10-16 00:39:01 +00:00
|
|
|
U_NAMESPACE_BEGIN
|
|
|
|
|
2004-04-12 18:51:31 +00:00
|
|
|
class LEGlyphStorage;
|
2000-11-28 20:56:52 +00:00
|
|
|
|
2002-06-29 00:04:16 +00:00
|
|
|
class ArabicShaping /* not : public UObject because all methods are static */ {
|
2000-11-28 20:56:52 +00:00
|
|
|
public:
|
|
|
|
// shaping bit masks
|
|
|
|
enum ShapingBitMasks
|
|
|
|
{
|
|
|
|
MASK_SHAPE_RIGHT = 1, // if this bit set, shapes to right
|
|
|
|
MASK_SHAPE_LEFT = 2, // if this bit set, shapes to left
|
|
|
|
MASK_TRANSPARENT = 4, // if this bit set, is transparent (ignore other bits)
|
|
|
|
MASK_NOSHAPE = 8 // if this bit set, don't shape this char, i.e. tatweel
|
|
|
|
};
|
|
|
|
|
|
|
|
// shaping values
|
|
|
|
enum ShapeTypeValues
|
|
|
|
{
|
|
|
|
ST_NONE = 0,
|
|
|
|
ST_RIGHT = MASK_SHAPE_RIGHT,
|
|
|
|
ST_LEFT = MASK_SHAPE_LEFT,
|
|
|
|
ST_DUAL = MASK_SHAPE_RIGHT | MASK_SHAPE_LEFT,
|
|
|
|
ST_TRANSPARENT = MASK_TRANSPARENT,
|
|
|
|
ST_NOSHAPE_DUAL = MASK_NOSHAPE | ST_DUAL,
|
|
|
|
ST_NOSHAPE_NONE = MASK_NOSHAPE
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef le_int32 ShapeType;
|
|
|
|
|
|
|
|
static void shape(const LEUnicode *chars, le_int32 offset, le_int32 charCount, le_int32 charMax,
|
2004-04-12 18:51:31 +00:00
|
|
|
le_bool rightToLeft, LEGlyphStorage &glyphStorage);
|
2000-11-28 20:56:52 +00:00
|
|
|
|
2002-06-10 23:33:56 +00:00
|
|
|
static const LETag *getFeatureOrder();
|
|
|
|
|
2000-11-28 20:56:52 +00:00
|
|
|
private:
|
2002-06-29 00:04:16 +00:00
|
|
|
// forbid instantiation
|
|
|
|
ArabicShaping();
|
|
|
|
|
2000-11-28 20:56:52 +00:00
|
|
|
static const LETag tagArray[];
|
|
|
|
|
2004-05-07 23:29:16 +00:00
|
|
|
static ShapeType getShapeType(LEUnicode c);
|
2000-11-28 20:56:52 +00:00
|
|
|
|
2004-04-12 18:51:31 +00:00
|
|
|
static const ShapeType shapeTypes[];
|
2002-10-04 18:45:07 +00:00
|
|
|
|
2004-05-07 23:29:16 +00:00
|
|
|
static void adjustTags(le_int32 outIndex, le_int32 shapeOffset, LEGlyphStorage &glyphStorage);
|
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
|