ICU 64.2
64.2
|
C API for run arrays. More...
#include "unicode/utypes.h"
#include "unicode/ubidi.h"
#include "layout/LETypes.h"
#include "layout/loengine.h"
Go to the source code of this file.
Typedefs | |
typedef void | pl_fontRuns |
Opaque datatype representing an array of font runs. More... | |
typedef void | pl_valueRuns |
Opaque datatype representing an array of value runs. More... | |
typedef void | pl_localeRuns |
Opaque datatype representing an array of locale runs. More... | |
Functions | |
pl_fontRuns * | pl_openFontRuns (const le_font **fonts, const le_int32 *limits, le_int32 count) |
Construct a pl_fontRuns object from pre-existing arrays of fonts and limit indices. More... | |
pl_fontRuns * | pl_openEmptyFontRuns (le_int32 initialCapacity) |
Construct an empty pl_fontRuns object. More... | |
void | pl_closeFontRuns (pl_fontRuns *fontRuns) |
Close the given pl_fontRuns object. More... | |
le_int32 | pl_getFontRunCount (const pl_fontRuns *fontRuns) |
Get the number of font runs. More... | |
void | pl_resetFontRuns (pl_fontRuns *fontRuns) |
Reset the number of font runs to zero. More... | |
le_int32 | pl_getFontRunLastLimit (const pl_fontRuns *fontRuns) |
Get the limit index for the last font run. More... | |
le_int32 | pl_getFontRunLimit (const pl_fontRuns *fontRuns, le_int32 run) |
Get the limit index for a particular font run. More... | |
const le_font * | pl_getFontRunFont (const pl_fontRuns *fontRuns, le_int32 run) |
Get the le_font object assoicated with the given run of text. More... | |
le_int32 | pl_addFontRun (pl_fontRuns *fontRuns, const le_font *font, le_int32 limit) |
Add a new font run to the given pl_fontRuns object. More... | |
pl_valueRuns * | pl_openValueRuns (const le_int32 *values, const le_int32 *limits, le_int32 count) |
Construct a pl_valueRuns object from pre-existing arrays of values and limit indices. More... | |
pl_valueRuns * | pl_openEmptyValueRuns (le_int32 initialCapacity) |
Construct an empty pl_valueRuns object. More... | |
void | pl_closeValueRuns (pl_valueRuns *valueRuns) |
Close the given pl_valueRuns object. More... | |
le_int32 | pl_getValueRunCount (const pl_valueRuns *valueRuns) |
Get the number of value runs. More... | |
void | pl_resetValueRuns (pl_valueRuns *valueRuns) |
Reset the number of value runs to zero. More... | |
le_int32 | pl_getValueRunLastLimit (const pl_valueRuns *valueRuns) |
Get the limit index for the last value run. More... | |
le_int32 | pl_getValueRunLimit (const pl_valueRuns *valueRuns, le_int32 run) |
Get the limit index for a particular value run. More... | |
le_int32 | pl_getValueRunValue (const pl_valueRuns *valueRuns, le_int32 run) |
Get the value assoicated with the given run * of text. More... | |
le_int32 | pl_addValueRun (pl_valueRuns *valueRuns, le_int32 value, le_int32 limit) |
Add a new font run to the given pl_valueRuns object. More... | |
pl_localeRuns * | pl_openLocaleRuns (const char **locales, const le_int32 *limits, le_int32 count) |
Construct a pl_localeRuns object from pre-existing arrays of fonts and limit indices. More... | |
pl_localeRuns * | pl_openEmptyLocaleRuns (le_int32 initialCapacity) |
Construct an empty pl_localeRuns object. More... | |
void | pl_closeLocaleRuns (pl_localeRuns *localeRuns) |
Close the given pl_localeRuns object. More... | |
le_int32 | pl_getLocaleRunCount (const pl_localeRuns *localeRuns) |
Get the number of font runs. More... | |
void | pl_resetLocaleRuns (pl_localeRuns *localeRuns) |
Reset the number of locale runs to zero. More... | |
le_int32 | pl_getLocaleRunLastLimit (const pl_localeRuns *localeRuns) |
Get the limit index for the last font run. More... | |
le_int32 | pl_getLocaleRunLimit (const pl_localeRuns *localeRuns, le_int32 run) |
Get the limit index for a particular font run. More... | |
const char * | pl_getLocaleRunLocale (const pl_localeRuns *localeRuns, le_int32 run) |
Get the le_font object assoicated with the given run of text. More... | |
le_int32 | pl_addLocaleRun (pl_localeRuns *localeRuns, const char *locale, le_int32 limit) |
Add a new run to the given pl_localeRuns object. More... | |
C API for run arrays.
This is a technology preview. The API may change significantly.
Definition in file plruns.h.
typedef void pl_fontRuns |
typedef void pl_localeRuns |
typedef void pl_valueRuns |
le_int32 pl_addFontRun | ( | pl_fontRuns * | fontRuns, |
const le_font * | font, | ||
le_int32 | limit | ||
) |
Add a new font run to the given pl_fontRuns
object.
If the pl_fontRuns
object was not created by calling pl_openEmptyFontRuns
, this method will return a run index of -1.
fontRuns | is the pl_fontRuns object. |
font | is the address of the le_font to add. This object must remain valid until the pl_fontRuns object is closed. |
limit | is the limit index to add |
le_int32 pl_addLocaleRun | ( | pl_localeRuns * | localeRuns, |
const char * | locale, | ||
le_int32 | limit | ||
) |
Add a new run to the given pl_localeRuns
object.
If the pl_localeRuns
object was not created by calling pl_openEmptyLocaleRuns
, this method will return a run index of -1.
localeRuns | is the pl_localeRuns object. |
locale | is the name of the locale to add. This name must remain valid until the pl_localeRuns object is closed. |
limit | is the limit index to add |
le_int32 pl_addValueRun | ( | pl_valueRuns * | valueRuns, |
le_int32 | value, | ||
le_int32 | limit | ||
) |
Add a new font run to the given pl_valueRuns
object.
If the pl_valueRuns
object was not created by calling pl_openEmptyFontRuns
, this method will return a run index of -1.
valueRuns | is the pl_valueRuns object. |
value | is the value to add. |
limit | is the limit index to add |
void pl_closeFontRuns | ( | pl_fontRuns * | fontRuns | ) |
Close the given pl_fontRuns
object.
Once this call returns, the object can no longer be referenced.
fontRuns | is the pl_fontRuns object. |
void pl_closeLocaleRuns | ( | pl_localeRuns * | localeRuns | ) |
Close the given pl_localeRuns
object.
Once this call returns, the object can no longer be referenced.
localeRuns | is the pl_localeRuns object. |
void pl_closeValueRuns | ( | pl_valueRuns * | valueRuns | ) |
Close the given pl_valueRuns
object.
Once this call returns, the object can no longer be referenced.
valueRuns | is the pl_valueRuns object. |
le_int32 pl_getFontRunCount | ( | const pl_fontRuns * | fontRuns | ) |
Get the number of font runs.
fontRuns | is the pl_fontRuns object. |
const le_font* pl_getFontRunFont | ( | const pl_fontRuns * | fontRuns, |
le_int32 | run | ||
) |
Get the le_font
object assoicated with the given run of text.
Use pl_getFontRunLimit(run)
to get the corresponding limit index.
fontRuns | is the pl_fontRuns object. |
run | is the index into the font and limit indices arrays. |
le_font
associated with the given text run.le_int32 pl_getFontRunLastLimit | ( | const pl_fontRuns * | fontRuns | ) |
Get the limit index for the last font run.
This is the number of characters in the text.
fontRuns | is the pl_fontRuns object. |
le_int32 pl_getFontRunLimit | ( | const pl_fontRuns * | fontRuns, |
le_int32 | run | ||
) |
Get the limit index for a particular font run.
fontRuns | is the pl_fontRuns object. |
run | is the run. This is an index into the limit index array. |
run
is out of bounds.le_int32 pl_getLocaleRunCount | ( | const pl_localeRuns * | localeRuns | ) |
Get the number of font runs.
localeRuns | is the pl_localeRuns object. |
le_int32 pl_getLocaleRunLastLimit | ( | const pl_localeRuns * | localeRuns | ) |
Get the limit index for the last font run.
This is the number of characters in the text.
localeRuns | is the pl_localeRuns object. |
le_int32 pl_getLocaleRunLimit | ( | const pl_localeRuns * | localeRuns, |
le_int32 | run | ||
) |
Get the limit index for a particular font run.
localeRuns | is the pl_localeRuns object. |
run | is the run. This is an index into the limit index array. |
run
is out of bounds.const char* pl_getLocaleRunLocale | ( | const pl_localeRuns * | localeRuns, |
le_int32 | run | ||
) |
Get the le_font
object assoicated with the given run of text.
Use pl_getLocaleRunLimit(run)
to get the corresponding limit index.
localeRuns | is the pl_localeRuns object. |
run | is the index into the font and limit indices arrays. |
le_font
associated with the given text run.le_int32 pl_getValueRunCount | ( | const pl_valueRuns * | valueRuns | ) |
Get the number of value runs.
valueRuns | is the pl_valueRuns object. |
le_int32 pl_getValueRunLastLimit | ( | const pl_valueRuns * | valueRuns | ) |
Get the limit index for the last value run.
This is the number of characters in the text.
valueRuns | is the pl_valueRuns object. |
le_int32 pl_getValueRunLimit | ( | const pl_valueRuns * | valueRuns, |
le_int32 | run | ||
) |
Get the limit index for a particular value run.
valueRuns | is the pl_valueRuns object. |
run | is the run index. |
run
is out of bounds.le_int32 pl_getValueRunValue | ( | const pl_valueRuns * | valueRuns, |
le_int32 | run | ||
) |
Get the value assoicated with the given run * of text.
Use pl_getValueRunLimit(run)
to get the corresponding limit index.
valueRuns | is the pl_valueRuns object. |
run | is the run index. |
pl_fontRuns* pl_openEmptyFontRuns | ( | le_int32 | initialCapacity | ) |
Construct an empty pl_fontRuns
object.
Clients can add font and limit indices arrays using the pl_addFontRun
routine.
initialCapacity | is the initial size of the font and limit indices arrays. If this value is zero, no arrays will be allocated. |
pl_localeRuns* pl_openEmptyLocaleRuns | ( | le_int32 | initialCapacity | ) |
Construct an empty pl_localeRuns
object.
Clients can add font and limit indices arrays using the pl_addFontRun
routine.
initialCapacity | is the initial size of the font and limit indices arrays. If this value is zero, no arrays will be allocated. |
pl_valueRuns* pl_openEmptyValueRuns | ( | le_int32 | initialCapacity | ) |
Construct an empty pl_valueRuns
object.
Clients can add values and limits using the pl_addValueRun
routine.
initialCapacity | is the initial size of the value and limit indices arrays. If this value is zero, no arrays will be allocated. |
pl_fontRuns* pl_openFontRuns | ( | const le_font ** | fonts, |
const le_int32 * | limits, | ||
le_int32 | count | ||
) |
Construct a pl_fontRuns
object from pre-existing arrays of fonts and limit indices.
fonts | is the address of an array of pointers to le_font objects. This array, and the le_font objects to which it points must remain valid until the pl_fontRuns object is closed. |
limits | is the address of an array of limit indices. This array must remain valid until the pl_fontRuns object is closed. |
count | is the number of entries in the two arrays. |
pl_localeRuns* pl_openLocaleRuns | ( | const char ** | locales, |
const le_int32 * | limits, | ||
le_int32 | count | ||
) |
Construct a pl_localeRuns
object from pre-existing arrays of fonts and limit indices.
locales | is the address of an array of pointers to locale name strings. This array must remain valid until the pl_localeRuns object is destroyed. |
limits | is the address of an array of limit indices. This array must remain valid until the pl_valueRuns object is destroyed. |
count | is the number of entries in the two arrays. |
pl_valueRuns* pl_openValueRuns | ( | const le_int32 * | values, |
const le_int32 * | limits, | ||
le_int32 | count | ||
) |
Construct a pl_valueRuns
object from pre-existing arrays of values and limit indices.
values | is the address of an array of values. This array must remain valid until the pl_valueRuns object is closed. |
limits | is the address of an array of limit indices. This array must remain valid until the pl_valueRuns object is closed. |
count | is the number of entries in the two arrays. |
void pl_resetFontRuns | ( | pl_fontRuns * | fontRuns | ) |
Reset the number of font runs to zero.
fontRuns | is the pl_fontRuns object. |
void pl_resetLocaleRuns | ( | pl_localeRuns * | localeRuns | ) |
Reset the number of locale runs to zero.
localeRuns | is the pl_localeRuns object. |
void pl_resetValueRuns | ( | pl_valueRuns * | valueRuns | ) |
Reset the number of value runs to zero.
valueRuns | is the pl_valueRuns object. |