blob: 6d768e1c082364f9907b19a2f15ca5414a659f0b [file] [log] [blame]
/*
* @(#)LETypes.h 1.2 00/03/15
*
* (C) Copyright IBM Corp. 1998-2003 - All Rights Reserved
*
*/
#ifndef __LETYPES_H
#define __LETYPES_H
#include "unicode/utypes.h"
#include "unicode/uobject.h"
#include "cmemory.h"
U_NAMESPACE_BEGIN
/**
* A type used for signed, 32-bit integers.
*
* @stable ICU 2.4
*/
typedef int32_t le_int32;
/**
* A type used for unsigned, 32-bit integers.
*
* @stable ICU 2.4
*/
typedef uint32_t le_uint32;
/**
* A type used for signed, 16-bit integers.
*
* @stable ICU 2.4
*/
typedef int16_t le_int16;
/**
* A type used for unsigned, 16-bit integers.
*
* @stable ICU 2.4
*/
typedef uint16_t le_uint16;
/**
* A type used for signed, 8-bit integers.
*
* @stable ICU 2.4
*/
typedef int8_t le_int8;
/**
* A type used for unsigned, 8-bit integers.
*
* @stable ICU 2.4
*/
typedef uint8_t le_uint8;
/**
* A type used for boolean values.
*
* @stable ICU 2.4
*/
typedef UBool le_bool;
#ifndef true
/**
* Used for <code>le_bool</code> values which are <code>true</code>.
*
* @stable ICU 2.4
*/
#define true 1
#endif
#ifndef false
/**
* Used for <code>le_bool</code> values which are <code>false</code>.
*
* @stable ICU 2.4
*/
#define false 0
#endif
#ifndef NULL
/**
* Used to represent empty pointers.
*
* @stable ICU 2.4
*/
#define NULL 0
#endif
/**
* Used for four character tags.
*
* @stable ICU 2.4
*/
typedef le_uint32 LETag;
/**
* Used for 16-bit glyph indices as they're represented
* in TrueType font tables.
*
* @draft ICU 2.6
*/
typedef le_uint16 TTGlyphID;
/**
* Used for glyph indices. The low-order 16 bits are
* the glyph ID within the font. The next 8 bits are
* the sub-font ID within a compound font. The high-
* order 8 bits are client defined. The LayoutEngine
* will never change or look at the client defined bits.
*
* @draft ICU 2.6
*/
typedef le_uint32 LEGlyphID;
/**
* Used to mask off the glyph ID part of an LEGlyphID.
*
* @see LEGlyphID
* @draft ICU 2.6
*/
#define LE_GLYPH_MASK 0x0000FFFF
/**
* Used to shift the glyph ID part of an LEGlyphID
* into the low-order bits.
*
* @see LEGlyphID
* @draft ICU 2.6
*/
#define LE_GLYPH_SHIFT 0
/**
* Used to mask off the sub-font ID part of an LEGlyphID.
*
* @see LEGlyphID
* @draft ICU 2.6
*/
#define LE_SUB_FONT_MASK 0x00FF0000
/**
* Used to shift the sub-font ID part of an LEGlyphID
* into the low-order bits.
*
* @see LEGlyphID
* @draft ICU 2.6
*/
#define LE_SUB_FONT_SHIFT 16
/**
* Used to mask off the client-defined part of an LEGlyphID.
*
* @see LEGlyphID
* @draft ICU 2.6
*/
#define LE_CLIENT_MASK 0xFF000000
/**
* Used to shift the sub-font ID part of an LEGlyphID
* into the low-order bits.
*
* @see LEGlyphID
* @draft ICU 2.6
*/
#define LE_CLIENT_SHIFT 24
/**
* A convenience macro to get the Glyph ID part of an LEGlyphID.
*
* @see LEGlyphID
* @draft ICU 2.6
*/
#define LE_GET_GLYPH(gid) ((gid & LE_GLYPH_MASK) >> LE_GLYPH_SHIFT)
/**
* A convenience macro to get the sub-font ID part of an LEGlyphID.
*
* @see LEGlyphID
* @draft ICU 2.6
*/
#define LE_GET_SUB_FONT(gid) ((gid & LE_SUB_FONT_MASK) >> LE_SUB_FONT_SHIFT)
/**
* A convenience macro to get the client-defined part of an LEGlyphID.
*
* @see LEGlyphID
* @draft ICU 2.6
*/
#define LE_GET_CLIENT(gid) ((gid & LE_CLIENT_MASK) >> LE_CLIENT_SHIFT)
/**
* A convenience macro to set the Glyph ID part of an LEGlyphID.
*
* @see LEGlyphID
* @draft ICU 2.6
*/
#define LE_SET_GLYPH(gid, glyph) ((gid & ~LE_GLYPH_MASK) | ((glyph << LE_GLYPH_SHIFT) & LE_GLYPH_MASK))
/**
* A convenience macro to set the sub-font ID part of an LEGlyphID.
*
* @see LEGlyphID
* @draft ICU 2.6
*/
#define LE_SET_SUB_FONT(gid, font) ((gid & ~LE_SUB_FONT_MASK) | ((font << LE_SUB_FONT_SHIFT) & LE_SUB_FONT_MASK))
/**
* A convenience macro to set the client-defined part of an LEGlyphID.
*
* @see LEGlyphID
* @draft ICU 2.6
*/
#define LE_SET_CLIENT(gid, client) ((gid & ~LE_CLIENT_MASK) | ((client << LE_CLIENT_SHIFT) & LE_CLIENT_MASK))
/**
* Used to represent 16-bit Unicode code points.
*
* @stable ICU 2.4
*/
typedef UChar LEUnicode16;
/**
* Used to represent 32-bit Unicode code points.
*
* @stable ICU 2.4
*/
typedef UChar32 LEUnicode32;
/**
* Used to represent 16-bit Unicode code points.
*
* @deprecated since ICU 2.4. Use LEUnicode16 instead
*/
typedef UChar LEUnicode;
/**
* Used to hold a pair of (x, y) values which represent a point.
*
* @stable ICU 2.4
*/
struct LEPoint
{
/**
* The x coordinate of the point.
*
* @stable ICU 2.4
*/
float fX;
/**
* The y coordinate of the point.
*
* @stable ICU 2.4
*/
float fY;
};
#ifndef XP_CPLUSPLUS
/**
* Used to hold a pair of (x, y) values which represent a point.
*
* @stable ICU 2.4
*/
typedef struct LEPoint LEPoint;
#endif
/**
* A convenience macro for copying an array.
*
* @stable ICU 2.4
*/
#define LE_ARRAY_COPY(dst, src, count) uprv_memcpy((void *) (dst), (void *) (src), (count) * sizeof (src)[0])
/**
* Allocate an array of basic types. This is used to isolate the rest of
* the LayoutEngine code from cmemory.h.
*
* @draft ICU 2.6
*/
#define LE_NEW_ARRAY(type, count) (type *) uprv_malloc((count) * sizeof(type))
/**
* Re-allocate an array of basic types. This is used to isolate the rest of
* the LayoutEngine code from cmemory.h.
*
* @draft ICU 2.6
*/
#define LE_GROW_ARRAY(array, newSize) uprv_realloc((void *) (array), (newSize) * sizeof (array)[0])
/**
* Free an array of basic types. This is used to isolate the rest of
* the LayoutEngine code from cmemory.h.
*
* @draft ICU 2.6
*/
#define LE_DELETE_ARRAY(array) uprv_free((void *) (array))
/**
* A macro to construct the four-letter tags used to
* label TrueType tables, and for script, language and
* feature tags in OpenType tables.
*
* @draft ICU 2.6
*/
#define LE_MAKE_TAG(a, b, c, d) \
(((le_uint32)(a) << 24) | \
((le_uint32)(b) << 16) | \
((le_uint32)(c) << 8) | \
(le_uint32)(d))
/**
* Error codes returned by the LayoutEngine.
*
* @stable ICU 2.4
*/
enum LEErrorCode {
/* informational */
LE_NO_SUBFONT_WARNING = U_USING_DEFAULT_WARNING,
/* success */
LE_NO_ERROR = U_ZERO_ERROR,
/* failures */
LE_ILLEGAL_ARGUMENT_ERROR = U_ILLEGAL_ARGUMENT_ERROR,
LE_MEMORY_ALLOCATION_ERROR = U_MEMORY_ALLOCATION_ERROR,
LE_INDEX_OUT_OF_BOUNDS_ERROR = U_INDEX_OUTOFBOUNDS_ERROR,
LE_NO_LAYOUT_ERROR = U_UNSUPPORTED_ERROR,
LE_INTERNAL_ERROR = U_INTERNAL_PROGRAM_ERROR,
LE_FONT_FILE_NOT_FOUND_ERROR = U_FILE_ACCESS_ERROR,
LE_MISSING_FONT_TABLE_ERROR = U_MISSING_RESOURCE_ERROR
};
#ifndef XP_CPLUSPLUS
/**
* Error codes returned by the LayoutEngine.
*
* @stable ICU 2.4
*/
typedef enum LEErrorCode LEErrorCode;
#endif
/**
* A convenience macro to test for the success of a LayoutEngine call.
*
* @stable ICU 2.4
*/
#define LE_SUCCESS(code) (U_SUCCESS((UErrorCode)code))
/**
* A convenience macro to test for the failure of a LayoutEngine call.
*
* @stable ICU 2.4
*/
#define LE_FAILURE(code) (U_FAILURE((UErrorCode)code))
U_NAMESPACE_END
#endif