[docs] Add gtkdoc comments to hb-common
This commit is contained in:
parent
922c32eb2d
commit
4cdb12a3fa
|
@ -86,12 +86,15 @@ _hb_options_init ()
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* hb_tag_from_string:
|
* hb_tag_from_string:
|
||||||
* @str: (array length=len) (element-type uint8_t):
|
* @str: (array length=len) (element-type uint8_t): String to convert
|
||||||
* @len:
|
* @len: Length of @str, or -1 if it is %NULL-terminated
|
||||||
*
|
*
|
||||||
|
* Converts a string into an #hb_tag_t. Valid tags
|
||||||
|
* are four characters. Shorter input strings will be
|
||||||
|
* padded with spaces. Longer input strings will be
|
||||||
|
* truncated.
|
||||||
*
|
*
|
||||||
*
|
* Return value: The #hb_tag_t corresponding to @str
|
||||||
* Return value:
|
|
||||||
*
|
*
|
||||||
* Since: 0.9.2
|
* Since: 0.9.2
|
||||||
**/
|
**/
|
||||||
|
@ -116,10 +119,11 @@ hb_tag_from_string (const char *str, int len)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* hb_tag_to_string:
|
* hb_tag_to_string:
|
||||||
* @tag:
|
* @tag: #hb_tag_t to convert
|
||||||
* @buf: (out caller-allocates) (array fixed-size=4) (element-type uint8_t):
|
* @buf: (out caller-allocates) (array fixed-size=4) (element-type uint8_t): Converted string
|
||||||
*
|
|
||||||
*
|
*
|
||||||
|
* Converts an #hb_tag_t to a string and returns it in @buf.
|
||||||
|
* Strings will be four characters long.
|
||||||
*
|
*
|
||||||
* Since: 0.9.5
|
* Since: 0.9.5
|
||||||
**/
|
**/
|
||||||
|
@ -144,12 +148,17 @@ const char direction_strings[][4] = {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* hb_direction_from_string:
|
* hb_direction_from_string:
|
||||||
* @str: (array length=len) (element-type uint8_t):
|
* @str: (array length=len) (element-type uint8_t): String to convert
|
||||||
* @len:
|
* @len: Length of @str, or -1 if it is %NULL-terminated
|
||||||
*
|
*
|
||||||
|
* Converts a string to an #hb_direction_t.
|
||||||
*
|
*
|
||||||
|
* Matching is loose and applies only to the first letter. For
|
||||||
|
* examples, "LTR" and "left-to-right" will both return #HB_DIRECTION_LTR.
|
||||||
*
|
*
|
||||||
* Return value:
|
* Unmatched strings will return #HB_DIRECTION_INVALID.
|
||||||
|
*
|
||||||
|
* Return value: The #hb_direction_t matching @str
|
||||||
*
|
*
|
||||||
* Since: 0.9.2
|
* Since: 0.9.2
|
||||||
**/
|
**/
|
||||||
|
@ -172,11 +181,11 @@ hb_direction_from_string (const char *str, int len)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* hb_direction_to_string:
|
* hb_direction_to_string:
|
||||||
* @direction:
|
* @direction: The #hb_direction_t to convert
|
||||||
*
|
*
|
||||||
|
* Converts an #hb_direction_t to a string.
|
||||||
*
|
*
|
||||||
*
|
* Return value: (transfer none): The string corresponding to @direction
|
||||||
* Return value: (transfer none):
|
|
||||||
*
|
*
|
||||||
* Since: 0.9.2
|
* Since: 0.9.2
|
||||||
**/
|
**/
|
||||||
|
@ -367,9 +376,9 @@ hb_language_from_string (const char *str, int len)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* hb_language_to_string:
|
* hb_language_to_string:
|
||||||
* @language: an #hb_language_t to convert.
|
* @language: The #hb_language_t to convert
|
||||||
*
|
*
|
||||||
* See hb_language_from_string().
|
* Converts an #hb_language_t to a string.
|
||||||
*
|
*
|
||||||
* Return value: (transfer none):
|
* Return value: (transfer none):
|
||||||
* A %NULL-terminated string representing the @language. Must not be freed by
|
* A %NULL-terminated string representing the @language. Must not be freed by
|
||||||
|
@ -388,16 +397,17 @@ hb_language_to_string (hb_language_t language)
|
||||||
/**
|
/**
|
||||||
* hb_language_get_default:
|
* hb_language_get_default:
|
||||||
*
|
*
|
||||||
* Get default language from current locale.
|
* Fetch the default language from current locale.
|
||||||
*
|
*
|
||||||
* Note that the first time this function is called, it calls
|
* <note>Note that the first time this function is called, it calls
|
||||||
* "setlocale (LC_CTYPE, nullptr)" to fetch current locale. The underlying
|
* "setlocale (LC_CTYPE, nullptr)" to fetch current locale. The underlying
|
||||||
* setlocale function is, in many implementations, NOT threadsafe. To avoid
|
* setlocale function is, in many implementations, NOT threadsafe. To avoid
|
||||||
* problems, call this function once before multiple threads can call it.
|
* problems, call this function once before multiple threads can call it.
|
||||||
* This function is only used from hb_buffer_guess_segment_properties() by
|
* This function is only used from hb_buffer_guess_segment_properties() by
|
||||||
* HarfBuzz itself.
|
* HarfBuzz itself.</note>
|
||||||
*
|
*
|
||||||
* Return value: (transfer none):
|
* Return value: (transfer none): The default language of the locale as
|
||||||
|
* an #hb_language_t
|
||||||
*
|
*
|
||||||
* Since: 0.9.2
|
* Since: 0.9.2
|
||||||
**/
|
**/
|
||||||
|
@ -494,7 +504,7 @@ hb_script_from_string (const char *str, int len)
|
||||||
* hb_script_to_iso15924_tag:
|
* hb_script_to_iso15924_tag:
|
||||||
* @script: an #hb_script_t to convert.
|
* @script: an #hb_script_t to convert.
|
||||||
*
|
*
|
||||||
* See hb_script_from_iso15924_tag().
|
* Converts an #hb_script_t to a corresponding ISO 15924 script tag.
|
||||||
*
|
*
|
||||||
* Return value:
|
* Return value:
|
||||||
* An #hb_tag_t representing an ISO 15924 script tag.
|
* An #hb_tag_t representing an ISO 15924 script tag.
|
||||||
|
@ -509,11 +519,15 @@ hb_script_to_iso15924_tag (hb_script_t script)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* hb_script_get_horizontal_direction:
|
* hb_script_get_horizontal_direction:
|
||||||
* @script:
|
* @script: The #hb_script_t to query
|
||||||
*
|
*
|
||||||
|
* Fetches the #hb_direction_t of a script when it is
|
||||||
|
* set horizontally. All right-to-left scripts will return
|
||||||
|
* #HB_DIRECTION_RTL. All left-to-right scripts will return
|
||||||
|
* #HB_DIRECTION_LTR. Scripts that cannot be written
|
||||||
|
* horizontally will return #HB_DIRECTION_INVALID.
|
||||||
*
|
*
|
||||||
*
|
* Return value: The horizontal #hb_direction_t of @script
|
||||||
* Return value:
|
|
||||||
*
|
*
|
||||||
* Since: 0.9.2
|
* Since: 0.9.2
|
||||||
**/
|
**/
|
||||||
|
@ -618,9 +632,9 @@ hb_script_get_horizontal_direction (hb_script_t script)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* hb_version:
|
* hb_version:
|
||||||
* @major: (out): Library major version component.
|
* @major: (out): Library major version component
|
||||||
* @minor: (out): Library minor version component.
|
* @minor: (out): Library minor version component
|
||||||
* @micro: (out): Library micro version component.
|
* @micro: (out): Library micro version component
|
||||||
*
|
*
|
||||||
* Returns library version as three integer components.
|
* Returns library version as three integer components.
|
||||||
*
|
*
|
||||||
|
@ -641,7 +655,7 @@ hb_version (unsigned int *major,
|
||||||
*
|
*
|
||||||
* Returns library version as a string with three components.
|
* Returns library version as a string with three components.
|
||||||
*
|
*
|
||||||
* Return value: library version string.
|
* Return value: Library version string
|
||||||
*
|
*
|
||||||
* Since: 0.9.2
|
* Since: 0.9.2
|
||||||
**/
|
**/
|
||||||
|
@ -653,13 +667,15 @@ hb_version_string ()
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* hb_version_atleast:
|
* hb_version_atleast:
|
||||||
* @major:
|
* @major: Library major version component
|
||||||
* @minor:
|
* @minor: Library minor version component
|
||||||
* @micro:
|
* @micro: Library micro version component
|
||||||
*
|
*
|
||||||
|
* Tests the library version against a minimum value,
|
||||||
|
* as three integer components.
|
||||||
*
|
*
|
||||||
*
|
* Return value: True if the library is equal to or greater than
|
||||||
* Return value:
|
* the test value, false otherwise
|
||||||
*
|
*
|
||||||
* Since: 0.9.30
|
* Since: 0.9.30
|
||||||
**/
|
**/
|
||||||
|
@ -888,7 +904,7 @@ parse_one_feature (const char **pp, const char *end, hb_feature_t *feature)
|
||||||
* </informaltable>
|
* </informaltable>
|
||||||
*
|
*
|
||||||
* Return value:
|
* Return value:
|
||||||
* %true if @str is successfully parsed, %false otherwise.
|
* %true if @str is successfully parsed, %false otherwise
|
||||||
*
|
*
|
||||||
* Since: 0.9.5
|
* Since: 0.9.5
|
||||||
**/
|
**/
|
||||||
|
|
295
src/hb-common.h
295
src/hb-common.h
|
@ -88,11 +88,37 @@ typedef unsigned __int64 uint64_t;
|
||||||
|
|
||||||
HB_BEGIN_DECLS
|
HB_BEGIN_DECLS
|
||||||
|
|
||||||
|
/**
|
||||||
|
* hb_bool_t:
|
||||||
|
*
|
||||||
|
* Data type for booleans.
|
||||||
|
*
|
||||||
|
**/
|
||||||
typedef int hb_bool_t;
|
typedef int hb_bool_t;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* hb_codepoint_t:
|
||||||
|
*
|
||||||
|
* Data type for holding Unicode codepoints. Also
|
||||||
|
* used to hold glyph IDs.
|
||||||
|
*
|
||||||
|
**/
|
||||||
typedef uint32_t hb_codepoint_t;
|
typedef uint32_t hb_codepoint_t;
|
||||||
|
/**
|
||||||
|
* hb_position_t:
|
||||||
|
*
|
||||||
|
* Data type for holding a single coordinate value.
|
||||||
|
* Contour points and other multi-dimensional data are
|
||||||
|
* stored as tuples of #hb_position_t's.
|
||||||
|
*
|
||||||
|
**/
|
||||||
typedef int32_t hb_position_t;
|
typedef int32_t hb_position_t;
|
||||||
|
/**
|
||||||
|
* hb_mask_t:
|
||||||
|
*
|
||||||
|
* Data type for bitmasks.
|
||||||
|
*
|
||||||
|
**/
|
||||||
typedef uint32_t hb_mask_t;
|
typedef uint32_t hb_mask_t;
|
||||||
|
|
||||||
typedef union _hb_var_int_t {
|
typedef union _hb_var_int_t {
|
||||||
|
@ -107,9 +133,33 @@ typedef union _hb_var_int_t {
|
||||||
|
|
||||||
/* hb_tag_t */
|
/* hb_tag_t */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* hb_tag_t:
|
||||||
|
*
|
||||||
|
* Data type for tag identifiers. Tags are arrays of four
|
||||||
|
* bytes, each of which holds a character.
|
||||||
|
*
|
||||||
|
* Tags are used to identify tables, design-variation axes,
|
||||||
|
* scripts, languages, font features, and baselines with
|
||||||
|
* human-readable names.
|
||||||
|
*
|
||||||
|
**/
|
||||||
typedef uint32_t hb_tag_t;
|
typedef uint32_t hb_tag_t;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* HB_TAG:
|
||||||
|
*
|
||||||
|
* Constructs an #hb_tag_t from four characters.
|
||||||
|
*
|
||||||
|
**/
|
||||||
#define HB_TAG(c1,c2,c3,c4) ((hb_tag_t)((((uint32_t)(c1)&0xFF)<<24)|(((uint32_t)(c2)&0xFF)<<16)|(((uint32_t)(c3)&0xFF)<<8)|((uint32_t)(c4)&0xFF)))
|
#define HB_TAG(c1,c2,c3,c4) ((hb_tag_t)((((uint32_t)(c1)&0xFF)<<24)|(((uint32_t)(c2)&0xFF)<<16)|(((uint32_t)(c3)&0xFF)<<8)|((uint32_t)(c4)&0xFF)))
|
||||||
|
|
||||||
|
/**
|
||||||
|
* HB_UNTAG:
|
||||||
|
*
|
||||||
|
* Extracts the characters from an #hb_tag_t.
|
||||||
|
*
|
||||||
|
**/
|
||||||
#define HB_UNTAG(tag) (uint8_t)(((tag)>>24)&0xFF), (uint8_t)(((tag)>>16)&0xFF), (uint8_t)(((tag)>>8)&0xFF), (uint8_t)((tag)&0xFF)
|
#define HB_UNTAG(tag) (uint8_t)(((tag)>>24)&0xFF), (uint8_t)(((tag)>>16)&0xFF), (uint8_t)(((tag)>>8)&0xFF), (uint8_t)((tag)&0xFF)
|
||||||
|
|
||||||
#define HB_TAG_NONE HB_TAG(0,0,0,0)
|
#define HB_TAG_NONE HB_TAG(0,0,0,0)
|
||||||
|
@ -132,6 +182,13 @@ hb_tag_to_string (hb_tag_t tag, char *buf);
|
||||||
* @HB_DIRECTION_RTL: Text is set horizontally from right to left.
|
* @HB_DIRECTION_RTL: Text is set horizontally from right to left.
|
||||||
* @HB_DIRECTION_TTB: Text is set vertically from top to bottom.
|
* @HB_DIRECTION_TTB: Text is set vertically from top to bottom.
|
||||||
* @HB_DIRECTION_BTT: Text is set vertically from bottom to top.
|
* @HB_DIRECTION_BTT: Text is set vertically from bottom to top.
|
||||||
|
*
|
||||||
|
* The direction of a text segment or buffer.
|
||||||
|
*
|
||||||
|
* A segment can also be tested for horizontal or vertical
|
||||||
|
* orientation (irrespective of specific direction) with
|
||||||
|
* HB_DIRECTION_IS_HORIZONTAL() or HB_DIRECTION_IS_VERTICAL().
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
typedef enum {
|
typedef enum {
|
||||||
HB_DIRECTION_INVALID = 0,
|
HB_DIRECTION_INVALID = 0,
|
||||||
|
@ -148,12 +205,59 @@ hb_direction_from_string (const char *str, int len);
|
||||||
HB_EXTERN const char *
|
HB_EXTERN const char *
|
||||||
hb_direction_to_string (hb_direction_t direction);
|
hb_direction_to_string (hb_direction_t direction);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* HB_DIRECTION_IS_VALID:
|
||||||
|
* @dir: #hb_direction_t to test
|
||||||
|
*
|
||||||
|
* Tests whether a text direction is valid.
|
||||||
|
*
|
||||||
|
**/
|
||||||
#define HB_DIRECTION_IS_VALID(dir) ((((unsigned int) (dir)) & ~3U) == 4)
|
#define HB_DIRECTION_IS_VALID(dir) ((((unsigned int) (dir)) & ~3U) == 4)
|
||||||
/* Direction must be valid for the following */
|
/* Direction must be valid for the following */
|
||||||
|
/**
|
||||||
|
* HB_DIRECTION_IS_HORIZONTAL:
|
||||||
|
* @dir: #hb_direction_t to test
|
||||||
|
*
|
||||||
|
* Tests whether a text direction is horizontal. Requires
|
||||||
|
* that the direction be valid.
|
||||||
|
*
|
||||||
|
**/
|
||||||
#define HB_DIRECTION_IS_HORIZONTAL(dir) ((((unsigned int) (dir)) & ~1U) == 4)
|
#define HB_DIRECTION_IS_HORIZONTAL(dir) ((((unsigned int) (dir)) & ~1U) == 4)
|
||||||
|
/**
|
||||||
|
* HB_DIRECTION_IS_VERTICAL:
|
||||||
|
* @dir: #hb_direction_t to test
|
||||||
|
*
|
||||||
|
* Tests whether a text direction is vertical. Requires
|
||||||
|
* that the direction be valid.
|
||||||
|
*
|
||||||
|
**/
|
||||||
#define HB_DIRECTION_IS_VERTICAL(dir) ((((unsigned int) (dir)) & ~1U) == 6)
|
#define HB_DIRECTION_IS_VERTICAL(dir) ((((unsigned int) (dir)) & ~1U) == 6)
|
||||||
|
/**
|
||||||
|
* HB_DIRECTION_IS_FORWARD:
|
||||||
|
* @dir: #hb_direction_t to test
|
||||||
|
*
|
||||||
|
* Tests whether a text direction is forward. Requires
|
||||||
|
* that the direction be valid.
|
||||||
|
*
|
||||||
|
**/
|
||||||
#define HB_DIRECTION_IS_FORWARD(dir) ((((unsigned int) (dir)) & ~2U) == 4)
|
#define HB_DIRECTION_IS_FORWARD(dir) ((((unsigned int) (dir)) & ~2U) == 4)
|
||||||
|
/**
|
||||||
|
* HB_DIRECTION_IS_BACKWARD:
|
||||||
|
* @dir: #hb_direction_t to test
|
||||||
|
*
|
||||||
|
* Tests whether a text direction is backward. Requires
|
||||||
|
* that the direction be valid.
|
||||||
|
*
|
||||||
|
**/
|
||||||
#define HB_DIRECTION_IS_BACKWARD(dir) ((((unsigned int) (dir)) & ~2U) == 5)
|
#define HB_DIRECTION_IS_BACKWARD(dir) ((((unsigned int) (dir)) & ~2U) == 5)
|
||||||
|
/**
|
||||||
|
* HB_DIRECTION_REVERSE:
|
||||||
|
* @dir: #hb_direction_t to reverse
|
||||||
|
*
|
||||||
|
* Reverses a text direction. Requires that the direction
|
||||||
|
* be valid.
|
||||||
|
*
|
||||||
|
**/
|
||||||
#define HB_DIRECTION_REVERSE(dir) ((hb_direction_t) (((unsigned int) (dir)) ^ 1))
|
#define HB_DIRECTION_REVERSE(dir) ((hb_direction_t) (((unsigned int) (dir)) ^ 1))
|
||||||
|
|
||||||
|
|
||||||
|
@ -173,7 +277,171 @@ HB_EXTERN hb_language_t
|
||||||
hb_language_get_default (void);
|
hb_language_get_default (void);
|
||||||
|
|
||||||
|
|
||||||
/* hb_script_t */
|
/**
|
||||||
|
* hb_script_t:
|
||||||
|
* @HB_SCRIPT_COMMON: HB_TAG ('Z','y','y','y')
|
||||||
|
* @HB_SCRIPT_INHERITED: HB_TAG ('Z','i','n','h')
|
||||||
|
* @HB_SCRIPT_UNKNOWN: HB_TAG ('Z','z','z','z')
|
||||||
|
* @HB_SCRIPT_ARABIC
|
||||||
|
* @HB_SCRIPT_ARMENIAN
|
||||||
|
* @HB_SCRIPT_BENGALI
|
||||||
|
* @HB_SCRIPT_CYRILLIC
|
||||||
|
* @HB_SCRIPT_DEVANAGARI
|
||||||
|
* @HB_SCRIPT_GEORGIAN
|
||||||
|
* @HB_SCRIPT_GREEK
|
||||||
|
* @HB_SCRIPT_GUJARATI
|
||||||
|
* @HB_SCRIPT_GURMUKHI
|
||||||
|
* @HB_SCRIPT_HANGUL
|
||||||
|
* @HB_SCRIPT_HAN
|
||||||
|
* @HB_SCRIPT_HEBREW
|
||||||
|
* @HB_SCRIPT_HIRAGANA
|
||||||
|
* @HB_SCRIPT_KANNADA
|
||||||
|
* @HB_SCRIPT_KATAKANA
|
||||||
|
* @HB_SCRIPT_LAO
|
||||||
|
* @HB_SCRIPT_LATIN
|
||||||
|
* @HB_SCRIPT_MALAYALAM
|
||||||
|
* @HB_SCRIPT_ORIYA
|
||||||
|
* @HB_SCRIPT_TAMIL
|
||||||
|
* @HB_SCRIPT_TELUGU
|
||||||
|
* @HB_SCRIPT_THAI
|
||||||
|
* @HB_SCRIPT_TIBETAN
|
||||||
|
* @HB_SCRIPT_BOPOMOFO
|
||||||
|
* @HB_SCRIPT_BRAILLE
|
||||||
|
* @HB_SCRIPT_CANADIAN_SYLLABICS
|
||||||
|
* @HB_SCRIPT_CHEROKEE
|
||||||
|
* @HB_SCRIPT_ETHIOPIC
|
||||||
|
* @HB_SCRIPT_KHMER
|
||||||
|
* @HB_SCRIPT_MONGOLIAN
|
||||||
|
* @HB_SCRIPT_MYANMAR
|
||||||
|
* @HB_SCRIPT_OGHAM
|
||||||
|
* @HB_SCRIPT_RUNIC
|
||||||
|
* @HB_SCRIPT_SINHALA
|
||||||
|
* @HB_SCRIPT_SYRIAC
|
||||||
|
* @HB_SCRIPT_THAANA
|
||||||
|
* @HB_SCRIPT_YI
|
||||||
|
* @HB_SCRIPT_DESERET
|
||||||
|
* @HB_SCRIPT_GOTHIC
|
||||||
|
* @HB_SCRIPT_OLD_ITALIC
|
||||||
|
* @HB_SCRIPT_BUHID
|
||||||
|
* @HB_SCRIPT_HANUNOO
|
||||||
|
* @HB_SCRIPT_TAGALOG
|
||||||
|
* @HB_SCRIPT_TAGBANWA
|
||||||
|
* @HB_SCRIPT_CYPRIOT
|
||||||
|
* @HB_SCRIPT_LIMBU
|
||||||
|
* @HB_SCRIPT_LINEAR_B
|
||||||
|
* @HB_SCRIPT_OSMANYA
|
||||||
|
* @HB_SCRIPT_SHAVIAN
|
||||||
|
* @HB_SCRIPT_TAI_LE
|
||||||
|
* @HB_SCRIPT_UGARITIC
|
||||||
|
* @HB_SCRIPT_BUGINESE
|
||||||
|
* @HB_SCRIPT_COPTIC
|
||||||
|
* @HB_SCRIPT_GLAGOLITIC
|
||||||
|
* @HB_SCRIPT_KHAROSHTHI
|
||||||
|
* @HB_SCRIPT_NEW_TAI_LUE
|
||||||
|
* @HB_SCRIPT_OLD_PERSIAN
|
||||||
|
* @HB_SCRIPT_SYLOTI_NAGRI
|
||||||
|
* @HB_SCRIPT_TIFINAGH
|
||||||
|
* @HB_SCRIPT_BALINESE
|
||||||
|
* @HB_SCRIPT_CUNEIFORM
|
||||||
|
* @HB_SCRIPT_NKO
|
||||||
|
* @HB_SCRIPT_PHAGS_PA
|
||||||
|
* @HB_SCRIPT_PHOENICIAN
|
||||||
|
* @HB_SCRIPT_CARIAN
|
||||||
|
* @HB_SCRIPT_CHAM
|
||||||
|
* @HB_SCRIPT_KAYAH_LI
|
||||||
|
* @HB_SCRIPT_LEPCHA
|
||||||
|
* @HB_SCRIPT_LYCIAN
|
||||||
|
* @HB_SCRIPT_LYDIAN
|
||||||
|
* @HB_SCRIPT_OL_CHIKI
|
||||||
|
* @HB_SCRIPT_REJANG
|
||||||
|
* @HB_SCRIPT_SAURASHTRA
|
||||||
|
* @HB_SCRIPT_SUNDANESE
|
||||||
|
* @HB_SCRIPT_VAI
|
||||||
|
* @HB_SCRIPT_AVESTAN
|
||||||
|
* @HB_SCRIPT_BAMUM
|
||||||
|
* @HB_SCRIPT_EGYPTIAN_HIEROGLYPHS
|
||||||
|
* @HB_SCRIPT_IMPERIAL_ARAMAIC
|
||||||
|
* @HB_SCRIPT_INSCRIPTIONAL_PAHLAVI
|
||||||
|
* @HB_SCRIPT_INSCRIPTIONAL_PARTHIAN
|
||||||
|
* @HB_SCRIPT_JAVANESE
|
||||||
|
* @HB_SCRIPT_KAITHI
|
||||||
|
* @HB_SCRIPT_LISU
|
||||||
|
* @HB_SCRIPT_MEETEI_MAYEK
|
||||||
|
* @HB_SCRIPT_OLD_SOUTH_ARABIAN
|
||||||
|
* @HB_SCRIPT_OLD_TURKIC
|
||||||
|
* @HB_SCRIPT_SAMARITAN
|
||||||
|
* @HB_SCRIPT_TAI_THAM
|
||||||
|
* @HB_SCRIPT_TAI_VIET
|
||||||
|
* @HB_SCRIPT_BATAK
|
||||||
|
* @HB_SCRIPT_BRAHMI
|
||||||
|
* @HB_SCRIPT_MANDAIC
|
||||||
|
* @HB_SCRIPT_CHAKMA
|
||||||
|
* @HB_SCRIPT_MEROITIC_CURSIVE
|
||||||
|
* @HB_SCRIPT_MEROITIC_HIEROGLYPHS
|
||||||
|
* @HB_SCRIPT_MIAO
|
||||||
|
* @HB_SCRIPT_SHARADA
|
||||||
|
* @HB_SCRIPT_SORA_SOMPENG
|
||||||
|
* @HB_SCRIPT_TAKRI
|
||||||
|
* @HB_SCRIPT_BASSA_VAH
|
||||||
|
* @HB_SCRIPT_CAUCASIAN_ALBANIAN
|
||||||
|
* @HB_SCRIPT_DUPLOYAN
|
||||||
|
* @HB_SCRIPT_ELBASAN
|
||||||
|
* @HB_SCRIPT_GRANTHA
|
||||||
|
* @HB_SCRIPT_KHOJKI
|
||||||
|
* @HB_SCRIPT_KHUDAWADI
|
||||||
|
* @HB_SCRIPT_LINEAR_A
|
||||||
|
* @HB_SCRIPT_MAHAJANI
|
||||||
|
* @HB_SCRIPT_MANICHAEAN
|
||||||
|
* @HB_SCRIPT_MENDE_KIKAKUI
|
||||||
|
* @HB_SCRIPT_MODI
|
||||||
|
* @HB_SCRIPT_MRO
|
||||||
|
* @HB_SCRIPT_NABATAEAN
|
||||||
|
* @HB_SCRIPT_OLD_NORTH_ARABIAN
|
||||||
|
* @HB_SCRIPT_OLD_PERMIC
|
||||||
|
* @HB_SCRIPT_PAHAWH_HMONG
|
||||||
|
* @HB_SCRIPT_PALMYRENE
|
||||||
|
* @HB_SCRIPT_PAU_CIN_HAU
|
||||||
|
* @HB_SCRIPT_PSALTER_PAHLAVI
|
||||||
|
* @HB_SCRIPT_SIDDHAM
|
||||||
|
* @HB_SCRIPT_TIRHUTA
|
||||||
|
* @HB_SCRIPT_WARANG_CITI
|
||||||
|
* @HB_SCRIPT_AHOM
|
||||||
|
* @HB_SCRIPT_ANATOLIAN_HIEROGLYPHS
|
||||||
|
* @HB_SCRIPT_HATRAN
|
||||||
|
* @HB_SCRIPT_MULTANI
|
||||||
|
* @HB_SCRIPT_OLD_HUNGARIAN
|
||||||
|
* @HB_SCRIPT_SIGNWRITING
|
||||||
|
* @HB_SCRIPT_ADLAM
|
||||||
|
* @HB_SCRIPT_BHAIKSUKI
|
||||||
|
* @HB_SCRIPT_MARCHEN
|
||||||
|
* @HB_SCRIPT_OSAGE
|
||||||
|
* @HB_SCRIPT_TANGUT
|
||||||
|
* @HB_SCRIPT_NEWA
|
||||||
|
* @HB_SCRIPT_MASARAM_GONDI
|
||||||
|
* @HB_SCRIPT_NUSHU
|
||||||
|
* @HB_SCRIPT_SOYOMBO
|
||||||
|
* @HB_SCRIPT_ZANABAZAR_SQUARE
|
||||||
|
* @HB_SCRIPT_DOGRA
|
||||||
|
* @HB_SCRIPT_GUNJALA_GONDI
|
||||||
|
* @HB_SCRIPT_HANIFI_ROHINGYA
|
||||||
|
* @HB_SCRIPT_MAKASAR
|
||||||
|
* @HB_SCRIPT_MEDEFAIDRIN
|
||||||
|
* @HB_SCRIPT_OLD_SOGDIAN
|
||||||
|
* @HB_SCRIPT_SOGDIAN
|
||||||
|
* @HB_SCRIPT_ELYMAIC
|
||||||
|
* @HB_SCRIPT_NANDINAGARI
|
||||||
|
* @HB_SCRIPT_NYIAKENG_PUACHUE_HMONG
|
||||||
|
* @HB_SCRIPT_WANCHO
|
||||||
|
* @HB_SCRIPT_INVALID: #HB_TAG_NONE
|
||||||
|
* @_HB_SCRIPT_MAX_VALUE: Dummy value
|
||||||
|
* @_HB_SCRIPT_MAX_VALUE_SIGNED: Dummy value
|
||||||
|
*
|
||||||
|
* Data type for scripts. Each #hb_script_t's value is an #hb_tag_t corresponding
|
||||||
|
* to the four-letter values defined at https://unicode.org/iso15924/ .
|
||||||
|
*
|
||||||
|
* See also the Script (sc) property of the Unicode Character Database.
|
||||||
|
*
|
||||||
|
**/
|
||||||
|
|
||||||
/* https://unicode.org/iso15924/ */
|
/* https://unicode.org/iso15924/ */
|
||||||
/* https://docs.google.com/spreadsheets/d/1Y90M0Ie3MUJ6UVCRDOypOtijlMDLNNyyLk36T6iMu0o */
|
/* https://docs.google.com/spreadsheets/d/1Y90M0Ie3MUJ6UVCRDOypOtijlMDLNNyyLk36T6iMu0o */
|
||||||
|
@ -410,6 +678,12 @@ hb_script_get_horizontal_direction (hb_script_t script);
|
||||||
|
|
||||||
/* User data */
|
/* User data */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* hb_user_data_key_t:
|
||||||
|
*
|
||||||
|
* Data structure for holding user-data keys.
|
||||||
|
*
|
||||||
|
**/
|
||||||
typedef struct hb_user_data_key_t {
|
typedef struct hb_user_data_key_t {
|
||||||
/*< private >*/
|
/*< private >*/
|
||||||
char unused;
|
char unused;
|
||||||
|
@ -435,10 +709,10 @@ typedef void (*hb_destroy_func_t) (void *user_data);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* hb_feature_t:
|
* hb_feature_t:
|
||||||
* @tag: a feature tag
|
* @tag: The #hb_tag_t tag of the feature
|
||||||
* @value: 0 disables the feature, non-zero (usually 1) enables the feature.
|
* @value: The value of the feature. 0 disables the feature, non-zero (usually
|
||||||
* For features implemented as lookup type 3 (like 'salt') the @value is a one
|
* 1) enables the feature. For features implemented as lookup type 3 (like
|
||||||
* based index into the alternates.
|
* 'salt') the @value is a one based index into the alternates.
|
||||||
* @start: the cluster to start applying this feature setting (inclusive).
|
* @start: the cluster to start applying this feature setting (inclusive).
|
||||||
* @end: the cluster to end applying this feature setting (exclusive).
|
* @end: the cluster to end applying this feature setting (exclusive).
|
||||||
*
|
*
|
||||||
|
@ -465,6 +739,12 @@ hb_feature_to_string (hb_feature_t *feature,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* hb_variation_t:
|
* hb_variation_t:
|
||||||
|
* @tag: The #hb_tag_t tag of the variation-axis name
|
||||||
|
* @value: The value of the variation axis
|
||||||
|
*
|
||||||
|
* Data type for holding variation data. Registered OpenType
|
||||||
|
* variation-axis tags are listed at
|
||||||
|
* https://docs.microsoft.com/en-us/typography/opentype/spec/dvaraxisreg
|
||||||
*
|
*
|
||||||
* Since: 1.4.2
|
* Since: 1.4.2
|
||||||
*/
|
*/
|
||||||
|
@ -484,7 +764,8 @@ hb_variation_to_string (hb_variation_t *variation,
|
||||||
/**
|
/**
|
||||||
* hb_color_t:
|
* hb_color_t:
|
||||||
*
|
*
|
||||||
* Data type for holding color values.
|
* Data type for holding color values. Colors are eight bits per
|
||||||
|
* channel RGB plus alpha transparency.
|
||||||
*
|
*
|
||||||
* Since: 2.1.0
|
* Since: 2.1.0
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue