#include "unicode/ures.h"
#include "unicode/uloc.h"
#include "unicode/uset.h"
Go to the source code of this file.
Data Structures | |
struct | ULocaleData |
A locale data object. More... | |
Enumerations | |
enum | ULocaleDataExemplarSetType { ULOCDATA_ES_STANDARD, ULOCDATA_ES_AUXILIARY, ULOCDATA_ES_COUNT } |
The possible types of exemplar character sets. More... | |
enum | ULocaleDataDelimiterType { ULOCDATA_QUOTATION_START, ULOCDATA_QUOTATION_END, ULOCDATA_ALT_QUOTATION_START, ULOCDATA_ALT_QUOTATION_END, ULOCDATA_DELIMITER_COUNT } |
The possible types of delimiters. More... | |
enum | UMeasurementSystem { UMS_SI, UMS_US, UMS_LIMIT } |
Enumeration for representing the measurement systems. More... | |
Functions | |
U_DRAFT ULocaleData *U_EXPORT2 | ulocdata_open (const char *localeID, UErrorCode *status) |
Opens a locale data object for the given locale. | |
U_DRAFT void U_EXPORT2 | ulocdata_close (ULocaleData *uld) |
Closes a locale data object. | |
U_DRAFT void U_EXPORT2 | ulocdata_setNoSubstitute (ULocaleData *uld, UBool setting) |
Sets the "no Substitute" attribute of the locale data object. | |
U_DRAFT UBool U_EXPORT2 | ulocdata_getNoSubstitute (ULocaleData *uld) |
Retrieves the current "no Substitute" value of the locale data object. | |
U_DRAFT USet *U_EXPORT2 | ulocdata_getExemplarSet (ULocaleData *uld, USet *fillIn, uint32_t options, ULocaleDataExemplarSetType extype, UErrorCode *status) |
Returns the set of exemplar characters for a locale. | |
U_DRAFT int32_t U_EXPORT2 | ulocdata_getDelimiter (ULocaleData *uld, ULocaleDataDelimiterType type, UChar *result, int32_t resultLength, UErrorCode *status) |
Returns one of the delimiter strings associated with a locale. | |
U_DRAFT UMeasurementSystem U_EXPORT2 | ulocdata_getMeasurementSystem (const char *localeID, UErrorCode *status) |
Returns the measurement system used in the locale specified by the localeID. | |
U_DRAFT void U_EXPORT2 | ulocdata_getPaperSize (const char *localeID, int32_t *height, int32_t *width, UErrorCode *status) |
Returns the element gives the normal business letter size, and customary units. |
Definition in file ulocdata.h.
The possible types of delimiters.
Definition at line 57 of file ulocdata.h.
The possible types of exemplar character sets.
Definition at line 48 of file ulocdata.h.
enum UMeasurementSystem |
Enumeration for representing the measurement systems.
UMS_US | Measurement system specified by SI otherwise known as Metric system. |
UMS_LIMIT | Measurement system followed in the United States of America. |
Definition at line 163 of file ulocdata.h.
U_DRAFT void U_EXPORT2 ulocdata_close | ( | ULocaleData * | uld | ) |
Closes a locale data object.
uld | The locale data object to close |
U_DRAFT int32_t U_EXPORT2 ulocdata_getDelimiter | ( | ULocaleData * | uld, | |
ULocaleDataDelimiterType | type, | |||
UChar * | result, | |||
int32_t | resultLength, | |||
UErrorCode * | status | |||
) |
Returns one of the delimiter strings associated with a locale.
uld | Pointer to the locale data object from which the delimiter string is to be retrieved. | |
type | the type of delimiter to be retrieved. | |
result | A pointer to a buffer to receive the result. | |
resultLength | The maximum size of result. | |
status | Pointer to an error code value |
U_DRAFT USet* U_EXPORT2 ulocdata_getExemplarSet | ( | ULocaleData * | uld, | |
USet * | fillIn, | |||
uint32_t | options, | |||
ULocaleDataExemplarSetType | extype, | |||
UErrorCode * | status | |||
) |
Returns the set of exemplar characters for a locale.
uld | Pointer to the locale data object from which the exemplar character set is to be retrieved. | |
fillIn | Pointer to a USet object to receive the exemplar character set for the given locale. Previous contents of fillIn are lost. If fillIn is NULL, then a new USet is created and returned. The caller owns the result and must dispose of it by calling uset_close. | |
options | Bitmask for options to apply to the exemplar pattern. Specify zero to retrieve the exemplar set as it is defined in the locale data. Specify USET_CASE_INSENSITIVE to retrieve a case-folded exemplar set. See uset_applyPattern for a complete list of valid options. The USET_IGNORE_SPACE bit is always set, regardless of the value of 'options'. | |
extype | Specifies the type of exemplar set to be retrieved. | |
status | Pointer to an input-output error code value; must not be NULL. |
U_DRAFT UMeasurementSystem U_EXPORT2 ulocdata_getMeasurementSystem | ( | const char * | localeID, | |
UErrorCode * | status | |||
) |
Returns the measurement system used in the locale specified by the localeID.
Please note that this API will change in ICU 3.6 and will use an ulocdata object.
localeID | The id of the locale for which the measurement system to be retrieved. | |
status | Must be a valid pointer to an error code value, which must not indicate a failure before the function call. |
U_DRAFT UBool U_EXPORT2 ulocdata_getNoSubstitute | ( | ULocaleData * | uld | ) |
Retrieves the current "no Substitute" value of the locale data object.
If true, then any methods associated with the locale data object will return null when there is no data available for that method, given the locale ID supplied to ulocdata_open().
uld | Pointer to the The locale data object to set. |
U_DRAFT void U_EXPORT2 ulocdata_getPaperSize | ( | const char * | localeID, | |
int32_t * | height, | |||
int32_t * | width, | |||
UErrorCode * | status | |||
) |
Returns the element gives the normal business letter size, and customary units.
The units for the numbers are always in milli-meters. For US since 8.5 and 11 do not yeild an integral value when converted to milli-meters, the values are rounded off. So for A4 size paper the height and width are 297 mm and 210 mm repectively, and for US letter size the height and width are 279 mm and 216 mm respectively. Please note that this API will change in ICU 3.6 and will use an ulocdata object.
localeID | The id of the locale for which the paper size information to be retrieved. | |
height | A pointer to int to recieve the height information. | |
width | A pointer to int to recieve the width information. | |
status | Must be a valid pointer to an error code value, which must not indicate a failure before the function call. |
U_DRAFT ULocaleData* U_EXPORT2 ulocdata_open | ( | const char * | localeID, | |
UErrorCode * | status | |||
) |
Opens a locale data object for the given locale.
localeID | Specifies the locale associated with this locale data object. | |
status | Pointer to error status code. |
U_DRAFT void U_EXPORT2 ulocdata_setNoSubstitute | ( | ULocaleData * | uld, | |
UBool | setting | |||
) |
Sets the "no Substitute" attribute of the locale data object.
If true, then any methods associated with the locale data object will return null when there is no data available for that method, given the locale ID supplied to ulocdata_open().
uld | The locale data object to set. | |
setting | Value of the "no substitute" attribute. |