ICU 67.1 67.1
ulistformatter.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* Copyright (C) 2015-2016, International Business Machines
6* Corporation and others. All Rights Reserved.
7*****************************************************************************************
8*/
9
10#ifndef ULISTFORMATTER_H
11#define ULISTFORMATTER_H
12
13#include "unicode/utypes.h"
14
15#if !UCONFIG_NO_FORMATTING
16
19
29
34struct UListFormatter;
36
37struct UFormattedList;
43
61
62#ifndef U_HIDE_DRAFT_API
91
117#endif /* U_HIDE_DRAFT_API */
118
137U_CAPI UListFormatter* U_EXPORT2
138ulistfmt_open(const char* locale,
139 UErrorCode* status);
140
141#ifndef U_HIDE_DRAFT_API
164U_DRAFT UListFormatter* U_EXPORT2
166 UListFormatterWidth width, UErrorCode* status);
167#endif /* U_HIDE_DRAFT_API */
168
175U_CAPI void U_EXPORT2
177
187U_CAPI UFormattedList* U_EXPORT2
189
211U_CAPI const UFormattedValue* U_EXPORT2
213
220U_CAPI void U_EXPORT2
222
223
224#if U_SHOW_CPLUSPLUS_API
225
226U_NAMESPACE_BEGIN
227
238
249
250U_NAMESPACE_END
251
252#endif
253
288U_CAPI int32_t U_EXPORT2
290 const UChar* const strings[],
291 const int32_t * stringLengths,
292 int32_t stringCount,
293 UChar* result,
294 int32_t resultCapacity,
295 UErrorCode* status);
296
323U_CAPI void U_EXPORT2
325 const UListFormatter* listfmt,
326 const UChar* const strings[],
327 const int32_t * stringLengths,
328 int32_t stringCount,
329 UFormattedList* uresult,
330 UErrorCode* status);
331
332#endif /* #if !UCONFIG_NO_FORMATTING */
333
334#endif
"Smart pointer" class, closes a UFormattedList via ulistfmt_closeResult().
"Smart pointer" class, closes a UListFormatter via ulistfmt_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: Abstract operations for localized strings.
struct UFormattedValue UFormattedValue
An abstract formatted value: a string with associated field attributes.
U_CAPI const UFormattedValue * ulistfmt_resultAsValue(const UFormattedList *uresult, UErrorCode *ec)
Returns a representation of a UFormattedList as a UFormattedValue, which can be subsequently passed t...
U_CAPI void ulistfmt_closeResult(UFormattedList *uresult)
Releases the UFormattedList created by ulistfmt_openResult().
U_CAPI UListFormatter * ulistfmt_open(const char *locale, UErrorCode *status)
Open a new UListFormatter object using the rules for a given locale.
struct UListFormatter UListFormatter
C typedef for struct UListFormatter.
U_CAPI void ulistfmt_formatStringsToResult(const UListFormatter *listfmt, const UChar *const strings[], const int32_t *stringLengths, int32_t stringCount, UFormattedList *uresult, UErrorCode *status)
Formats a list of strings to a UFormattedList, which exposes more information than the string exporte...
U_CAPI UFormattedList * ulistfmt_openResult(UErrorCode *ec)
Creates an object to hold the result of a UListFormatter operation.
struct UFormattedList UFormattedList
Opaque struct to contain the results of a UListFormatter operation.
UListFormatterWidth
Verbosity level of the list patterns.
@ ULISTFMT_WIDTH_NARROW
Use list formatting of the shortest possible length.
@ ULISTFMT_WIDTH_WIDE
Use list formatting with full words (no abbreviations) when possible.
@ ULISTFMT_WIDTH_SHORT
Use list formatting of typical length.
UListFormatterField
FieldPosition and UFieldPosition selectors for format fields defined by ListFormatter.
@ ULISTFMT_ELEMENT_FIELD
The element text in the result which came from the input strings.
@ ULISTFMT_LITERAL_FIELD
The literal text in the result which came from the resources.
UListFormatter * ulistfmt_openForType(const char *locale, UListFormatterType type, UListFormatterWidth width, UErrorCode *status)
Open a new UListFormatter object appropriate for the given locale, list type, and style.
U_CAPI int32_t ulistfmt_format(const UListFormatter *listfmt, const UChar *const strings[], const int32_t *stringLengths, int32_t stringCount, UChar *result, int32_t resultCapacity, UErrorCode *status)
Formats a list of strings using the conventions established for the UListFormatter object.
UListFormatterType
Type of meaning expressed by the list.
@ ULISTFMT_TYPE_OR
Disjunction (or alternative, or simply one of) formatting, e.g.
@ ULISTFMT_TYPE_AND
Conjunction formatting, e.g.
@ ULISTFMT_TYPE_UNITS
Formatting of a list of values with units, e.g.
U_CAPI void ulistfmt_close(UListFormatter *listfmt)
Close a UListFormatter object.
char16_t UChar
The base type for UTF-16 code units and pointers.
Definition umachine.h:376
#define U_DRAFT
This is used to declare a function as a draft public ICU C API.
Definition umachine.h:113
#define U_CAPI
This is used to declare a function as a public ICU C API.
Definition umachine.h:109
Basic definitions for ICU, for both C and C++ APIs.
UErrorCode
Standard ICU4C error code type, a substitute for exceptions.
Definition utypes.h:415