ICU 57.1 57.1
plruns.h
Go to the documentation of this file.
1/*
2 *
3 * (C) Copyright IBM Corp. 1998-2011 - All Rights Reserved
4 *
5 */
6
7#ifndef __PLRUNS_H
8#define __PLRUNS_H
9
10#include "unicode/utypes.h"
11
12#ifndef U_HIDE_INTERNAL_API
13
14#include "unicode/ubidi.h"
15#include "layout/LETypes.h"
16
17#include "layout/loengine.h"
18
22typedef void pl_fontRuns;
26typedef void pl_valueRuns;
30typedef void pl_localeRuns;
31
56U_INTERNAL pl_fontRuns * U_EXPORT2
57pl_openFontRuns(const le_font **fonts,
58 const le_int32 *limits,
59 le_int32 count);
60
72U_INTERNAL pl_fontRuns * U_EXPORT2
74
83U_INTERNAL void U_EXPORT2
85
95U_INTERNAL le_int32 U_EXPORT2
97
105U_INTERNAL void U_EXPORT2
107
118U_INTERNAL le_int32 U_EXPORT2
120
131U_INTERNAL le_int32 U_EXPORT2
133 le_int32 run);
134
147U_INTERNAL const le_font * U_EXPORT2
149 le_int32 run);
150
151
170U_INTERNAL le_int32 U_EXPORT2
172 const le_font *font,
173 le_int32 limit);
174
189U_INTERNAL pl_valueRuns * U_EXPORT2
191 const le_int32 *limits,
192 le_int32 count);
193
205U_INTERNAL pl_valueRuns * U_EXPORT2
207
216U_INTERNAL void U_EXPORT2
218
228U_INTERNAL le_int32 U_EXPORT2
230
238U_INTERNAL void U_EXPORT2
240
251U_INTERNAL le_int32 U_EXPORT2
253
264U_INTERNAL le_int32 U_EXPORT2
266 le_int32 run);
267
280U_INTERNAL le_int32 U_EXPORT2
282 le_int32 run);
283
284
302U_INTERNAL le_int32 U_EXPORT2
304 le_int32 value,
305 le_int32 limit);
306
321U_INTERNAL pl_localeRuns * U_EXPORT2
322pl_openLocaleRuns(const char **locales,
323 const le_int32 *limits,
324 le_int32 count);
325
337U_INTERNAL pl_localeRuns * U_EXPORT2
339
348U_INTERNAL void U_EXPORT2
350
360U_INTERNAL le_int32 U_EXPORT2
362
370U_INTERNAL void U_EXPORT2
372
383U_INTERNAL le_int32 U_EXPORT2
385
396U_INTERNAL le_int32 U_EXPORT2
398 le_int32 run);
399
412U_INTERNAL const char * U_EXPORT2
414 le_int32 run);
415
416
435U_INTERNAL le_int32 U_EXPORT2
437 const char *locale,
438 le_int32 limit);
439
440#endif /* U_HIDE_INTERNAL_API */
441#endif
C API: Basic definitions for the ICU LayoutEngine.
int32_t le_int32
A type used for signed, 32-bit integers.
Definition: LETypes.h:34
le_int32 pl_addValueRun(pl_valueRuns *valueRuns, le_int32 value, le_int32 limit)
Add a new font run to the given pl_valueRuns object.
pl_valueRuns * pl_openEmptyValueRuns(le_int32 initialCapacity)
Construct an empty pl_valueRuns object.
le_int32 pl_getValueRunValue(const pl_valueRuns *valueRuns, le_int32 run)
Get the value assoicated with the given run * of text.
void pl_localeRuns
Opaque datatype representing an array of locale runs.
Definition: plruns.h:30
void pl_valueRuns
Opaque datatype representing an array of value runs.
Definition: plruns.h:26
pl_fontRuns * pl_openEmptyFontRuns(le_int32 initialCapacity)
Construct an empty pl_fontRuns object.
le_int32 pl_getFontRunLastLimit(const pl_fontRuns *fontRuns)
Get the limit index for the last font run.
le_int32 pl_getFontRunCount(const pl_fontRuns *fontRuns)
Get the number of font runs.
le_int32 pl_getLocaleRunLimit(const pl_localeRuns *localeRuns, le_int32 run)
Get the limit index for a particular font run.
le_int32 pl_getFontRunLimit(const pl_fontRuns *fontRuns, le_int32 run)
Get the limit index for a particular font run.
void pl_resetLocaleRuns(pl_localeRuns *localeRuns)
Reset the number of locale runs to zero.
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.
void pl_resetValueRuns(pl_valueRuns *valueRuns)
Reset the number of value runs to zero.
pl_localeRuns * pl_openEmptyLocaleRuns(le_int32 initialCapacity)
Construct an empty pl_localeRuns object.
void pl_fontRuns
Opaque datatype representing an array of font runs.
Definition: plruns.h:22
le_int32 pl_getLocaleRunLastLimit(const pl_localeRuns *localeRuns)
Get the limit index for the last font run.
const char * pl_getLocaleRunLocale(const pl_localeRuns *localeRuns, le_int32 run)
Get the le_font object assoicated with the given run of text.
void pl_closeValueRuns(pl_valueRuns *valueRuns)
Close the given pl_valueRuns object.
le_int32 pl_getValueRunLimit(const pl_valueRuns *valueRuns, le_int32 run)
Get the limit index for a particular value run.
le_int32 pl_getLocaleRunCount(const pl_localeRuns *localeRuns)
Get the number of font runs.
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.
void pl_closeFontRuns(pl_fontRuns *fontRuns)
Close the given pl_fontRuns object.
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.
void pl_closeLocaleRuns(pl_localeRuns *localeRuns)
Close the given pl_localeRuns object.
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.
le_int32 pl_getValueRunCount(const pl_valueRuns *valueRuns)
Get the number of value runs.
le_int32 pl_getValueRunLastLimit(const pl_valueRuns *valueRuns)
Get the limit index for the last value run.
le_int32 pl_addLocaleRun(pl_localeRuns *localeRuns, const char *locale, le_int32 limit)
Add a new run to the given pl_localeRuns 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.
void pl_resetFontRuns(pl_fontRuns *fontRuns)
Reset the number of font runs to zero.
C API: Bidi algorithm.
#define U_INTERNAL
This is used to declare a function as an internal ICU C API
Definition: umachine.h:117
Basic definitions for ICU, for both C and C++ APIs.