ICU 75.1 75.1
Loading...
Searching...
No Matches
ulocdata.h
Go to the documentation of this file.
1// © 2016 and later: Unicode, Inc. and others.
2// License & terms of use: http://www.unicode.org/copyright.html
3/*
4******************************************************************************
5* *
6* Copyright (C) 2003-2015, International Business Machines *
7* Corporation and others. All Rights Reserved. *
8* *
9******************************************************************************
10* file name: ulocdata.h
11* encoding: UTF-8
12* tab size: 8 (not used)
13* indentation:4
14*
15* created on: 2003Oct21
16* created by: Ram Viswanadha
17*/
18
19#ifndef __ULOCDATA_H__
20#define __ULOCDATA_H__
21
22#include "unicode/ures.h"
23#include "unicode/uloc.h"
24#include "unicode/uset.h"
25
26#if U_SHOW_CPLUSPLUS_API
28#endif // U_SHOW_CPLUSPLUS_API
29
36struct ULocaleData;
37
39typedef struct ULocaleData ULocaleData;
40
41
42
63
84
93U_CAPI ULocaleData* U_EXPORT2
94ulocdata_open(const char *localeID, UErrorCode *status);
95
102U_CAPI void U_EXPORT2
104
105#if U_SHOW_CPLUSPLUS_API
106
107U_NAMESPACE_BEGIN
108
119
120U_NAMESPACE_END
121
122#endif
123
135U_CAPI void U_EXPORT2
137
149U_CAPI UBool U_EXPORT2
151
179U_CAPI USet* U_EXPORT2
181 uint32_t options, ULocaleDataExemplarSetType extype, UErrorCode *status);
182
196U_CAPI int32_t U_EXPORT2
197ulocdata_getDelimiter(ULocaleData *uld, ULocaleDataDelimiterType type, UChar *result, int32_t resultLength, UErrorCode *status);
198
203typedef enum UMeasurementSystem {
207#ifndef U_HIDE_DEPRECATED_API
213#endif /* U_HIDE_DEPRECATED_API */
215
227ulocdata_getMeasurementSystem(const char *localeID, UErrorCode *status);
228
245U_CAPI void U_EXPORT2
246ulocdata_getPaperSize(const char *localeID, int32_t *height, int32_t *width, UErrorCode *status);
247
254U_CAPI void U_EXPORT2
256
272U_CAPI int32_t U_EXPORT2
274 UChar *pattern,
275 int32_t patternCapacity,
276 UErrorCode *status);
277
278
294U_CAPI int32_t U_EXPORT2
296 UChar *separator,
297 int32_t separatorCapacity,
298 UErrorCode *status);
299#endif
"Smart pointer" class, closes a ULocaleData via ulocdata_close().
C++ API: "Smart pointers" for use with and in ICU4C C++ code.
#define U_DEFINE_LOCAL_OPEN_POINTER(LocalPointerClassName, Type, closeFunction)
"Smart pointer" definition macro, deletes objects via the closeFunction.
C API: Locale ID functionality similar to C++ class Locale.
U_CAPI int32_t ulocdata_getDelimiter(ULocaleData *uld, ULocaleDataDelimiterType type, UChar *result, int32_t resultLength, UErrorCode *status)
Returns one of the delimiter strings associated with a locale.
struct ULocaleData ULocaleData
A locale data object.
Definition ulocdata.h:39
ULocaleDataDelimiterType
The possible types of delimiters.
Definition ulocdata.h:67
@ ULOCDATA_QUOTATION_END
Quotation end.
Definition ulocdata.h:71
@ ULOCDATA_DELIMITER_COUNT
One more than the highest normal ULocaleDataDelimiterType value.
Definition ulocdata.h:81
@ ULOCDATA_QUOTATION_START
Quotation start.
Definition ulocdata.h:69
@ ULOCDATA_ALT_QUOTATION_END
Alternate quotation end.
Definition ulocdata.h:75
@ ULOCDATA_ALT_QUOTATION_START
Alternate quotation start.
Definition ulocdata.h:73
U_CAPI int32_t ulocdata_getLocaleSeparator(ULocaleData *uld, UChar *separator, int32_t separatorCapacity, UErrorCode *status)
Returns locale separator associated with a locale.
U_CAPI int32_t ulocdata_getLocaleDisplayPattern(ULocaleData *uld, UChar *pattern, int32_t patternCapacity, UErrorCode *status)
Returns locale display pattern associated with a locale.
U_CAPI void ulocdata_setNoSubstitute(ULocaleData *uld, UBool setting)
Sets the "no Substitute" attribute of the locale data object.
UMeasurementSystem
Enumeration for representing the measurement systems.
Definition ulocdata.h:203
@ UMS_UK
Mix of metric and imperial units used in Great Britain.
Definition ulocdata.h:206
@ UMS_US
Measurement system followed in the United States of America.
Definition ulocdata.h:205
@ UMS_SI
Measurement system specified by SI otherwise known as Metric system.
Definition ulocdata.h:204
@ UMS_LIMIT
One more than the highest normal UMeasurementSystem value.
Definition ulocdata.h:212
U_CAPI void ulocdata_getCLDRVersion(UVersionInfo versionArray, UErrorCode *status)
Return the current CLDR version used by the library.
U_CAPI void ulocdata_close(ULocaleData *uld)
Closes a locale data object.
U_CAPI UMeasurementSystem ulocdata_getMeasurementSystem(const char *localeID, UErrorCode *status)
Returns the measurement system used in the locale specified by the localeID.
U_CAPI void 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.
ULocaleDataExemplarSetType
The possible types of exemplar character sets.
Definition ulocdata.h:46
@ ULOCDATA_ES_COUNT
One more than the highest normal ULocaleDataExemplarSetType value.
Definition ulocdata.h:60
@ ULOCDATA_ES_STANDARD
Basic set.
Definition ulocdata.h:48
@ ULOCDATA_ES_INDEX
Index Character set.
Definition ulocdata.h:52
@ ULOCDATA_ES_AUXILIARY
Auxiliary set.
Definition ulocdata.h:50
@ ULOCDATA_ES_PUNCTUATION
Punctuation set.
Definition ulocdata.h:54
U_CAPI ULocaleData * ulocdata_open(const char *localeID, UErrorCode *status)
Opens a locale data object for the given locale.
U_CAPI UBool ulocdata_getNoSubstitute(ULocaleData *uld)
Retrieves the current "no Substitute" value of the locale data object.
U_CAPI USet * ulocdata_getExemplarSet(ULocaleData *uld, USet *fillIn, uint32_t options, ULocaleDataExemplarSetType extype, UErrorCode *status)
Returns the set of exemplar characters for a locale.
int8_t UBool
The ICU boolean type, a signed-byte integer.
Definition umachine.h:247
#define U_CAPI
This is used to declare a function as a public ICU C API.
Definition umachine.h:110
char16_t UChar
The base type for UTF-16 code units and pointers.
Definition umachine.h:378
C API: Resource Bundle.
C API: Unicode Set.
struct USet USet
USet is the C API type corresponding to C++ class UnicodeSet.
Definition uset.h:50
UErrorCode
Standard ICU4C error code type, a substitute for exceptions.
Definition utypes.h:415
uint8_t UVersionInfo[U_MAX_VERSION_LENGTH]
The binary form of a version on ICU APIs is an array of 4 uint8_t.
Definition uversion.h:59