Fri, 16 Jan 2015 18:13:44 +0100
Integrate suggestion from review to improve consistency with existing code.
michael@0 | 1 | /* |
michael@0 | 2 | * Copyright © 2007,2008,2009 Red Hat, Inc. |
michael@0 | 3 | * Copyright © 2011,2012 Google, Inc. |
michael@0 | 4 | * |
michael@0 | 5 | * This is part of HarfBuzz, a text shaping library. |
michael@0 | 6 | * |
michael@0 | 7 | * Permission is hereby granted, without written agreement and without |
michael@0 | 8 | * license or royalty fees, to use, copy, modify, and distribute this |
michael@0 | 9 | * software and its documentation for any purpose, provided that the |
michael@0 | 10 | * above copyright notice and the following two paragraphs appear in |
michael@0 | 11 | * all copies of this software. |
michael@0 | 12 | * |
michael@0 | 13 | * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR |
michael@0 | 14 | * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES |
michael@0 | 15 | * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN |
michael@0 | 16 | * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH |
michael@0 | 17 | * DAMAGE. |
michael@0 | 18 | * |
michael@0 | 19 | * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, |
michael@0 | 20 | * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND |
michael@0 | 21 | * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS |
michael@0 | 22 | * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO |
michael@0 | 23 | * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
michael@0 | 24 | * |
michael@0 | 25 | * Red Hat Author(s): Behdad Esfahbod |
michael@0 | 26 | * Google Author(s): Behdad Esfahbod |
michael@0 | 27 | */ |
michael@0 | 28 | |
michael@0 | 29 | #ifndef HB_H_IN |
michael@0 | 30 | #error "Include <hb.h> instead." |
michael@0 | 31 | #endif |
michael@0 | 32 | |
michael@0 | 33 | #ifndef HB_COMMON_H |
michael@0 | 34 | #define HB_COMMON_H |
michael@0 | 35 | |
michael@0 | 36 | #ifndef HB_BEGIN_DECLS |
michael@0 | 37 | # ifdef __cplusplus |
michael@0 | 38 | # define HB_BEGIN_DECLS extern "C" { |
michael@0 | 39 | # define HB_END_DECLS } |
michael@0 | 40 | # else /* !__cplusplus */ |
michael@0 | 41 | # define HB_BEGIN_DECLS |
michael@0 | 42 | # define HB_END_DECLS |
michael@0 | 43 | # endif /* !__cplusplus */ |
michael@0 | 44 | #endif |
michael@0 | 45 | |
michael@0 | 46 | #if !defined (HB_DONT_DEFINE_STDINT) |
michael@0 | 47 | |
michael@0 | 48 | #if defined (_SVR4) || defined (SVR4) || defined (__OpenBSD__) || \ |
michael@0 | 49 | defined (_sgi) || defined (__sun) || defined (sun) || \ |
michael@0 | 50 | defined (__digital__) || defined (__HP_cc) |
michael@0 | 51 | # include <inttypes.h> |
michael@0 | 52 | #elif defined (_AIX) |
michael@0 | 53 | # include <sys/inttypes.h> |
michael@0 | 54 | /* VS 2010 (_MSC_VER 1600) has stdint.h */ |
michael@0 | 55 | #elif defined (_MSC_VER) && _MSC_VER < 1600 |
michael@0 | 56 | typedef __int8 int8_t; |
michael@0 | 57 | typedef unsigned __int8 uint8_t; |
michael@0 | 58 | typedef __int16 int16_t; |
michael@0 | 59 | typedef unsigned __int16 uint16_t; |
michael@0 | 60 | typedef __int32 int32_t; |
michael@0 | 61 | typedef unsigned __int32 uint32_t; |
michael@0 | 62 | typedef __int64 int64_t; |
michael@0 | 63 | typedef unsigned __int64 uint64_t; |
michael@0 | 64 | #else |
michael@0 | 65 | # include <stdint.h> |
michael@0 | 66 | #endif |
michael@0 | 67 | |
michael@0 | 68 | #endif |
michael@0 | 69 | |
michael@0 | 70 | HB_BEGIN_DECLS |
michael@0 | 71 | |
michael@0 | 72 | |
michael@0 | 73 | typedef int hb_bool_t; |
michael@0 | 74 | |
michael@0 | 75 | typedef uint32_t hb_codepoint_t; |
michael@0 | 76 | typedef int32_t hb_position_t; |
michael@0 | 77 | typedef uint32_t hb_mask_t; |
michael@0 | 78 | |
michael@0 | 79 | typedef union _hb_var_int_t { |
michael@0 | 80 | uint32_t u32; |
michael@0 | 81 | int32_t i32; |
michael@0 | 82 | uint16_t u16[2]; |
michael@0 | 83 | int16_t i16[2]; |
michael@0 | 84 | uint8_t u8[4]; |
michael@0 | 85 | int8_t i8[4]; |
michael@0 | 86 | } hb_var_int_t; |
michael@0 | 87 | |
michael@0 | 88 | |
michael@0 | 89 | /* hb_tag_t */ |
michael@0 | 90 | |
michael@0 | 91 | typedef uint32_t hb_tag_t; |
michael@0 | 92 | |
michael@0 | 93 | #define HB_TAG(c1,c2,c3,c4) ((hb_tag_t)((((uint8_t)(c1))<<24)|(((uint8_t)(c2))<<16)|(((uint8_t)(c3))<<8)|((uint8_t)(c4)))) |
michael@0 | 94 | #define HB_UNTAG(tag) ((uint8_t)((tag)>>24)), ((uint8_t)((tag)>>16)), ((uint8_t)((tag)>>8)), ((uint8_t)(tag)) |
michael@0 | 95 | |
michael@0 | 96 | #define HB_TAG_NONE HB_TAG(0,0,0,0) |
michael@0 | 97 | #define HB_TAG_MAX HB_TAG(0xff,0xff,0xff,0xff) |
michael@0 | 98 | |
michael@0 | 99 | /* len=-1 means str is NUL-terminated. */ |
michael@0 | 100 | hb_tag_t |
michael@0 | 101 | hb_tag_from_string (const char *str, int len); |
michael@0 | 102 | |
michael@0 | 103 | /* buf should have 4 bytes. */ |
michael@0 | 104 | void |
michael@0 | 105 | hb_tag_to_string (hb_tag_t tag, char *buf); |
michael@0 | 106 | |
michael@0 | 107 | |
michael@0 | 108 | /* hb_direction_t */ |
michael@0 | 109 | |
michael@0 | 110 | typedef enum { |
michael@0 | 111 | HB_DIRECTION_INVALID = 0, |
michael@0 | 112 | HB_DIRECTION_LTR = 4, |
michael@0 | 113 | HB_DIRECTION_RTL, |
michael@0 | 114 | HB_DIRECTION_TTB, |
michael@0 | 115 | HB_DIRECTION_BTT |
michael@0 | 116 | } hb_direction_t; |
michael@0 | 117 | |
michael@0 | 118 | /* len=-1 means str is NUL-terminated */ |
michael@0 | 119 | hb_direction_t |
michael@0 | 120 | hb_direction_from_string (const char *str, int len); |
michael@0 | 121 | |
michael@0 | 122 | const char * |
michael@0 | 123 | hb_direction_to_string (hb_direction_t direction); |
michael@0 | 124 | |
michael@0 | 125 | #define HB_DIRECTION_IS_HORIZONTAL(dir) ((((unsigned int) (dir)) & ~1U) == 4) |
michael@0 | 126 | #define HB_DIRECTION_IS_VERTICAL(dir) ((((unsigned int) (dir)) & ~1U) == 6) |
michael@0 | 127 | #define HB_DIRECTION_IS_FORWARD(dir) ((((unsigned int) (dir)) & ~2U) == 4) |
michael@0 | 128 | #define HB_DIRECTION_IS_BACKWARD(dir) ((((unsigned int) (dir)) & ~2U) == 5) |
michael@0 | 129 | #define HB_DIRECTION_IS_VALID(dir) ((((unsigned int) (dir)) & ~3U) == 4) |
michael@0 | 130 | #define HB_DIRECTION_REVERSE(dir) ((hb_direction_t) (((unsigned int) (dir)) ^ 1)) /* Direction must be valid */ |
michael@0 | 131 | |
michael@0 | 132 | |
michael@0 | 133 | /* hb_language_t */ |
michael@0 | 134 | |
michael@0 | 135 | typedef const struct hb_language_impl_t *hb_language_t; |
michael@0 | 136 | |
michael@0 | 137 | /* len=-1 means str is NUL-terminated */ |
michael@0 | 138 | hb_language_t |
michael@0 | 139 | hb_language_from_string (const char *str, int len); |
michael@0 | 140 | |
michael@0 | 141 | const char * |
michael@0 | 142 | hb_language_to_string (hb_language_t language); |
michael@0 | 143 | |
michael@0 | 144 | #define HB_LANGUAGE_INVALID ((hb_language_t) NULL) |
michael@0 | 145 | |
michael@0 | 146 | hb_language_t |
michael@0 | 147 | hb_language_get_default (void); |
michael@0 | 148 | |
michael@0 | 149 | |
michael@0 | 150 | /* hb_script_t */ |
michael@0 | 151 | |
michael@0 | 152 | /* http://unicode.org/iso15924/ */ |
michael@0 | 153 | /* http://goo.gl/x9ilM */ |
michael@0 | 154 | /* Unicode Character Database property: Script (sc) */ |
michael@0 | 155 | typedef enum |
michael@0 | 156 | { |
michael@0 | 157 | /*1.1*/ HB_SCRIPT_COMMON = HB_TAG ('Z','y','y','y'), |
michael@0 | 158 | /*1.1*/ HB_SCRIPT_INHERITED = HB_TAG ('Z','i','n','h'), |
michael@0 | 159 | /*5.0*/ HB_SCRIPT_UNKNOWN = HB_TAG ('Z','z','z','z'), |
michael@0 | 160 | |
michael@0 | 161 | /*1.1*/ HB_SCRIPT_ARABIC = HB_TAG ('A','r','a','b'), |
michael@0 | 162 | /*1.1*/ HB_SCRIPT_ARMENIAN = HB_TAG ('A','r','m','n'), |
michael@0 | 163 | /*1.1*/ HB_SCRIPT_BENGALI = HB_TAG ('B','e','n','g'), |
michael@0 | 164 | /*1.1*/ HB_SCRIPT_CYRILLIC = HB_TAG ('C','y','r','l'), |
michael@0 | 165 | /*1.1*/ HB_SCRIPT_DEVANAGARI = HB_TAG ('D','e','v','a'), |
michael@0 | 166 | /*1.1*/ HB_SCRIPT_GEORGIAN = HB_TAG ('G','e','o','r'), |
michael@0 | 167 | /*1.1*/ HB_SCRIPT_GREEK = HB_TAG ('G','r','e','k'), |
michael@0 | 168 | /*1.1*/ HB_SCRIPT_GUJARATI = HB_TAG ('G','u','j','r'), |
michael@0 | 169 | /*1.1*/ HB_SCRIPT_GURMUKHI = HB_TAG ('G','u','r','u'), |
michael@0 | 170 | /*1.1*/ HB_SCRIPT_HANGUL = HB_TAG ('H','a','n','g'), |
michael@0 | 171 | /*1.1*/ HB_SCRIPT_HAN = HB_TAG ('H','a','n','i'), |
michael@0 | 172 | /*1.1*/ HB_SCRIPT_HEBREW = HB_TAG ('H','e','b','r'), |
michael@0 | 173 | /*1.1*/ HB_SCRIPT_HIRAGANA = HB_TAG ('H','i','r','a'), |
michael@0 | 174 | /*1.1*/ HB_SCRIPT_KANNADA = HB_TAG ('K','n','d','a'), |
michael@0 | 175 | /*1.1*/ HB_SCRIPT_KATAKANA = HB_TAG ('K','a','n','a'), |
michael@0 | 176 | /*1.1*/ HB_SCRIPT_LAO = HB_TAG ('L','a','o','o'), |
michael@0 | 177 | /*1.1*/ HB_SCRIPT_LATIN = HB_TAG ('L','a','t','n'), |
michael@0 | 178 | /*1.1*/ HB_SCRIPT_MALAYALAM = HB_TAG ('M','l','y','m'), |
michael@0 | 179 | /*1.1*/ HB_SCRIPT_ORIYA = HB_TAG ('O','r','y','a'), |
michael@0 | 180 | /*1.1*/ HB_SCRIPT_TAMIL = HB_TAG ('T','a','m','l'), |
michael@0 | 181 | /*1.1*/ HB_SCRIPT_TELUGU = HB_TAG ('T','e','l','u'), |
michael@0 | 182 | /*1.1*/ HB_SCRIPT_THAI = HB_TAG ('T','h','a','i'), |
michael@0 | 183 | |
michael@0 | 184 | /*2.0*/ HB_SCRIPT_TIBETAN = HB_TAG ('T','i','b','t'), |
michael@0 | 185 | |
michael@0 | 186 | /*3.0*/ HB_SCRIPT_BOPOMOFO = HB_TAG ('B','o','p','o'), |
michael@0 | 187 | /*3.0*/ HB_SCRIPT_BRAILLE = HB_TAG ('B','r','a','i'), |
michael@0 | 188 | /*3.0*/ HB_SCRIPT_CANADIAN_SYLLABICS = HB_TAG ('C','a','n','s'), |
michael@0 | 189 | /*3.0*/ HB_SCRIPT_CHEROKEE = HB_TAG ('C','h','e','r'), |
michael@0 | 190 | /*3.0*/ HB_SCRIPT_ETHIOPIC = HB_TAG ('E','t','h','i'), |
michael@0 | 191 | /*3.0*/ HB_SCRIPT_KHMER = HB_TAG ('K','h','m','r'), |
michael@0 | 192 | /*3.0*/ HB_SCRIPT_MONGOLIAN = HB_TAG ('M','o','n','g'), |
michael@0 | 193 | /*3.0*/ HB_SCRIPT_MYANMAR = HB_TAG ('M','y','m','r'), |
michael@0 | 194 | /*3.0*/ HB_SCRIPT_OGHAM = HB_TAG ('O','g','a','m'), |
michael@0 | 195 | /*3.0*/ HB_SCRIPT_RUNIC = HB_TAG ('R','u','n','r'), |
michael@0 | 196 | /*3.0*/ HB_SCRIPT_SINHALA = HB_TAG ('S','i','n','h'), |
michael@0 | 197 | /*3.0*/ HB_SCRIPT_SYRIAC = HB_TAG ('S','y','r','c'), |
michael@0 | 198 | /*3.0*/ HB_SCRIPT_THAANA = HB_TAG ('T','h','a','a'), |
michael@0 | 199 | /*3.0*/ HB_SCRIPT_YI = HB_TAG ('Y','i','i','i'), |
michael@0 | 200 | |
michael@0 | 201 | /*3.1*/ HB_SCRIPT_DESERET = HB_TAG ('D','s','r','t'), |
michael@0 | 202 | /*3.1*/ HB_SCRIPT_GOTHIC = HB_TAG ('G','o','t','h'), |
michael@0 | 203 | /*3.1*/ HB_SCRIPT_OLD_ITALIC = HB_TAG ('I','t','a','l'), |
michael@0 | 204 | |
michael@0 | 205 | /*3.2*/ HB_SCRIPT_BUHID = HB_TAG ('B','u','h','d'), |
michael@0 | 206 | /*3.2*/ HB_SCRIPT_HANUNOO = HB_TAG ('H','a','n','o'), |
michael@0 | 207 | /*3.2*/ HB_SCRIPT_TAGALOG = HB_TAG ('T','g','l','g'), |
michael@0 | 208 | /*3.2*/ HB_SCRIPT_TAGBANWA = HB_TAG ('T','a','g','b'), |
michael@0 | 209 | |
michael@0 | 210 | /*4.0*/ HB_SCRIPT_CYPRIOT = HB_TAG ('C','p','r','t'), |
michael@0 | 211 | /*4.0*/ HB_SCRIPT_LIMBU = HB_TAG ('L','i','m','b'), |
michael@0 | 212 | /*4.0*/ HB_SCRIPT_LINEAR_B = HB_TAG ('L','i','n','b'), |
michael@0 | 213 | /*4.0*/ HB_SCRIPT_OSMANYA = HB_TAG ('O','s','m','a'), |
michael@0 | 214 | /*4.0*/ HB_SCRIPT_SHAVIAN = HB_TAG ('S','h','a','w'), |
michael@0 | 215 | /*4.0*/ HB_SCRIPT_TAI_LE = HB_TAG ('T','a','l','e'), |
michael@0 | 216 | /*4.0*/ HB_SCRIPT_UGARITIC = HB_TAG ('U','g','a','r'), |
michael@0 | 217 | |
michael@0 | 218 | /*4.1*/ HB_SCRIPT_BUGINESE = HB_TAG ('B','u','g','i'), |
michael@0 | 219 | /*4.1*/ HB_SCRIPT_COPTIC = HB_TAG ('C','o','p','t'), |
michael@0 | 220 | /*4.1*/ HB_SCRIPT_GLAGOLITIC = HB_TAG ('G','l','a','g'), |
michael@0 | 221 | /*4.1*/ HB_SCRIPT_KHAROSHTHI = HB_TAG ('K','h','a','r'), |
michael@0 | 222 | /*4.1*/ HB_SCRIPT_NEW_TAI_LUE = HB_TAG ('T','a','l','u'), |
michael@0 | 223 | /*4.1*/ HB_SCRIPT_OLD_PERSIAN = HB_TAG ('X','p','e','o'), |
michael@0 | 224 | /*4.1*/ HB_SCRIPT_SYLOTI_NAGRI = HB_TAG ('S','y','l','o'), |
michael@0 | 225 | /*4.1*/ HB_SCRIPT_TIFINAGH = HB_TAG ('T','f','n','g'), |
michael@0 | 226 | |
michael@0 | 227 | /*5.0*/ HB_SCRIPT_BALINESE = HB_TAG ('B','a','l','i'), |
michael@0 | 228 | /*5.0*/ HB_SCRIPT_CUNEIFORM = HB_TAG ('X','s','u','x'), |
michael@0 | 229 | /*5.0*/ HB_SCRIPT_NKO = HB_TAG ('N','k','o','o'), |
michael@0 | 230 | /*5.0*/ HB_SCRIPT_PHAGS_PA = HB_TAG ('P','h','a','g'), |
michael@0 | 231 | /*5.0*/ HB_SCRIPT_PHOENICIAN = HB_TAG ('P','h','n','x'), |
michael@0 | 232 | |
michael@0 | 233 | /*5.1*/ HB_SCRIPT_CARIAN = HB_TAG ('C','a','r','i'), |
michael@0 | 234 | /*5.1*/ HB_SCRIPT_CHAM = HB_TAG ('C','h','a','m'), |
michael@0 | 235 | /*5.1*/ HB_SCRIPT_KAYAH_LI = HB_TAG ('K','a','l','i'), |
michael@0 | 236 | /*5.1*/ HB_SCRIPT_LEPCHA = HB_TAG ('L','e','p','c'), |
michael@0 | 237 | /*5.1*/ HB_SCRIPT_LYCIAN = HB_TAG ('L','y','c','i'), |
michael@0 | 238 | /*5.1*/ HB_SCRIPT_LYDIAN = HB_TAG ('L','y','d','i'), |
michael@0 | 239 | /*5.1*/ HB_SCRIPT_OL_CHIKI = HB_TAG ('O','l','c','k'), |
michael@0 | 240 | /*5.1*/ HB_SCRIPT_REJANG = HB_TAG ('R','j','n','g'), |
michael@0 | 241 | /*5.1*/ HB_SCRIPT_SAURASHTRA = HB_TAG ('S','a','u','r'), |
michael@0 | 242 | /*5.1*/ HB_SCRIPT_SUNDANESE = HB_TAG ('S','u','n','d'), |
michael@0 | 243 | /*5.1*/ HB_SCRIPT_VAI = HB_TAG ('V','a','i','i'), |
michael@0 | 244 | |
michael@0 | 245 | /*5.2*/ HB_SCRIPT_AVESTAN = HB_TAG ('A','v','s','t'), |
michael@0 | 246 | /*5.2*/ HB_SCRIPT_BAMUM = HB_TAG ('B','a','m','u'), |
michael@0 | 247 | /*5.2*/ HB_SCRIPT_EGYPTIAN_HIEROGLYPHS = HB_TAG ('E','g','y','p'), |
michael@0 | 248 | /*5.2*/ HB_SCRIPT_IMPERIAL_ARAMAIC = HB_TAG ('A','r','m','i'), |
michael@0 | 249 | /*5.2*/ HB_SCRIPT_INSCRIPTIONAL_PAHLAVI = HB_TAG ('P','h','l','i'), |
michael@0 | 250 | /*5.2*/ HB_SCRIPT_INSCRIPTIONAL_PARTHIAN = HB_TAG ('P','r','t','i'), |
michael@0 | 251 | /*5.2*/ HB_SCRIPT_JAVANESE = HB_TAG ('J','a','v','a'), |
michael@0 | 252 | /*5.2*/ HB_SCRIPT_KAITHI = HB_TAG ('K','t','h','i'), |
michael@0 | 253 | /*5.2*/ HB_SCRIPT_LISU = HB_TAG ('L','i','s','u'), |
michael@0 | 254 | /*5.2*/ HB_SCRIPT_MEETEI_MAYEK = HB_TAG ('M','t','e','i'), |
michael@0 | 255 | /*5.2*/ HB_SCRIPT_OLD_SOUTH_ARABIAN = HB_TAG ('S','a','r','b'), |
michael@0 | 256 | /*5.2*/ HB_SCRIPT_OLD_TURKIC = HB_TAG ('O','r','k','h'), |
michael@0 | 257 | /*5.2*/ HB_SCRIPT_SAMARITAN = HB_TAG ('S','a','m','r'), |
michael@0 | 258 | /*5.2*/ HB_SCRIPT_TAI_THAM = HB_TAG ('L','a','n','a'), |
michael@0 | 259 | /*5.2*/ HB_SCRIPT_TAI_VIET = HB_TAG ('T','a','v','t'), |
michael@0 | 260 | |
michael@0 | 261 | /*6.0*/ HB_SCRIPT_BATAK = HB_TAG ('B','a','t','k'), |
michael@0 | 262 | /*6.0*/ HB_SCRIPT_BRAHMI = HB_TAG ('B','r','a','h'), |
michael@0 | 263 | /*6.0*/ HB_SCRIPT_MANDAIC = HB_TAG ('M','a','n','d'), |
michael@0 | 264 | |
michael@0 | 265 | /*6.1*/ HB_SCRIPT_CHAKMA = HB_TAG ('C','a','k','m'), |
michael@0 | 266 | /*6.1*/ HB_SCRIPT_MEROITIC_CURSIVE = HB_TAG ('M','e','r','c'), |
michael@0 | 267 | /*6.1*/ HB_SCRIPT_MEROITIC_HIEROGLYPHS = HB_TAG ('M','e','r','o'), |
michael@0 | 268 | /*6.1*/ HB_SCRIPT_MIAO = HB_TAG ('P','l','r','d'), |
michael@0 | 269 | /*6.1*/ HB_SCRIPT_SHARADA = HB_TAG ('S','h','r','d'), |
michael@0 | 270 | /*6.1*/ HB_SCRIPT_SORA_SOMPENG = HB_TAG ('S','o','r','a'), |
michael@0 | 271 | /*6.1*/ HB_SCRIPT_TAKRI = HB_TAG ('T','a','k','r'), |
michael@0 | 272 | |
michael@0 | 273 | /* No script set. */ |
michael@0 | 274 | /*---*/ HB_SCRIPT_INVALID = HB_TAG_NONE, |
michael@0 | 275 | |
michael@0 | 276 | /* Dummy value to ensure any hb_tag_t value can be passed/stored as hb_script_t |
michael@0 | 277 | * without risking undefined behavior. */ |
michael@0 | 278 | /*---*/ _HB_SCRIPT_MAX_VALUE = HB_TAG_MAX |
michael@0 | 279 | |
michael@0 | 280 | } hb_script_t; |
michael@0 | 281 | |
michael@0 | 282 | /* These are moved out of hb_script_t because glib-mkenums chokes otherwise. */ |
michael@0 | 283 | #if 0 |
michael@0 | 284 | /*7.0*/ HB_SCRIPT_BASSA_VAH = HB_TAG ('B','a','s','s'), |
michael@0 | 285 | /*7.0*/ HB_SCRIPT_CAUCASIAN_ALBANIAN = HB_TAG ('A','g','h','b'), |
michael@0 | 286 | /*7.0*/ HB_SCRIPT_DUPLOYAN = HB_TAG ('D','u','p','l'), |
michael@0 | 287 | /*7.0*/ HB_SCRIPT_ELBASAN = HB_TAG ('E','l','b','a'), |
michael@0 | 288 | /*7.0*/ HB_SCRIPT_GRANTHA = HB_TAG ('G','r','a','n'), |
michael@0 | 289 | /*7.0*/ HB_SCRIPT_KHOJKI = HB_TAG ('K','h','o','j'), |
michael@0 | 290 | /*7.0*/ HB_SCRIPT_KHUDAWADI = HB_TAG ('S','i','n','d'), |
michael@0 | 291 | /*7.0*/ HB_SCRIPT_LINEAR_A = HB_TAG ('L','i','n','a'), |
michael@0 | 292 | /*7.0*/ HB_SCRIPT_MAHAJANI = HB_TAG ('M','a','h','j'), |
michael@0 | 293 | /*7.0*/ HB_SCRIPT_MANICHAEAN = HB_TAG ('M','a','n','i'), |
michael@0 | 294 | /*7.0*/ HB_SCRIPT_MENDE_KIKAKUI = HB_TAG ('M','e','n','d'), |
michael@0 | 295 | /*7.0*/ HB_SCRIPT_MODI = ??? |
michael@0 | 296 | /*7.0*/ HB_SCRIPT_MRO = HB_TAG ('M','r','o','o'), |
michael@0 | 297 | /*7.0*/ HB_SCRIPT_NABATAEAN = HB_TAG ('N','b','a','t'), |
michael@0 | 298 | /*7.0*/ HB_SCRIPT_OLD_NORTH_ARABIAN = HB_TAG ('N','a','r','b'), |
michael@0 | 299 | /*7.0*/ HB_SCRIPT_OLD_PERMIC = HB_TAG ('P','e','r','m'), |
michael@0 | 300 | /*7.0*/ HB_SCRIPT_PAHAWH_HMONG = HB_TAG ('H','m','n','g'), |
michael@0 | 301 | /*7.0*/ HB_SCRIPT_PALMYRENE = HB_TAG ('P','a','l','m'), |
michael@0 | 302 | /*7.0*/ HB_SCRIPT_PAU_CIN_HAU = ??? |
michael@0 | 303 | /*7.0*/ HB_SCRIPT_PSALTER_PAHLAVI = HB_TAG ('P','h','l','p'), |
michael@0 | 304 | /*7.0*/ HB_SCRIPT_SIDDHAM = ??? |
michael@0 | 305 | /*7.0*/ HB_SCRIPT_TIRHUTA = HB_TAG ('T','i','r','h'), |
michael@0 | 306 | /*7.0*/ HB_SCRIPT_WARANG_CITI = HB_TAG ('W','a','r','a'), |
michael@0 | 307 | #endif |
michael@0 | 308 | |
michael@0 | 309 | |
michael@0 | 310 | /* Script functions */ |
michael@0 | 311 | |
michael@0 | 312 | hb_script_t |
michael@0 | 313 | hb_script_from_iso15924_tag (hb_tag_t tag); |
michael@0 | 314 | |
michael@0 | 315 | /* suger for tag_from_string() then script_from_iso15924_tag */ |
michael@0 | 316 | /* len=-1 means s is NUL-terminated */ |
michael@0 | 317 | hb_script_t |
michael@0 | 318 | hb_script_from_string (const char *s, int len); |
michael@0 | 319 | |
michael@0 | 320 | hb_tag_t |
michael@0 | 321 | hb_script_to_iso15924_tag (hb_script_t script); |
michael@0 | 322 | |
michael@0 | 323 | hb_direction_t |
michael@0 | 324 | hb_script_get_horizontal_direction (hb_script_t script); |
michael@0 | 325 | |
michael@0 | 326 | |
michael@0 | 327 | /* User data */ |
michael@0 | 328 | |
michael@0 | 329 | typedef struct hb_user_data_key_t { |
michael@0 | 330 | /*< private >*/ |
michael@0 | 331 | char unused; |
michael@0 | 332 | } hb_user_data_key_t; |
michael@0 | 333 | |
michael@0 | 334 | typedef void (*hb_destroy_func_t) (void *user_data); |
michael@0 | 335 | |
michael@0 | 336 | |
michael@0 | 337 | HB_END_DECLS |
michael@0 | 338 | |
michael@0 | 339 | #endif /* HB_COMMON_H */ |