123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507 |
- #ifndef URELDATEFMT_H
- #define URELDATEFMT_H
- #include "unicode/utypes.h"
- #if !UCONFIG_NO_FORMATTING && !UCONFIG_NO_BREAK_ITERATION
- #include "unicode/unum.h"
- #include "unicode/udisplaycontext.h"
- #include "unicode/localpointer.h"
- #include "unicode/uformattedvalue.h"
- typedef enum UDateRelativeDateTimeFormatterStyle {
-
- UDAT_STYLE_LONG,
-
- UDAT_STYLE_SHORT,
-
- UDAT_STYLE_NARROW,
- #ifndef U_HIDE_DEPRECATED_API
-
- UDAT_STYLE_COUNT
- #endif
- } UDateRelativeDateTimeFormatterStyle;
- typedef enum URelativeDateTimeUnit {
-
- UDAT_REL_UNIT_YEAR,
-
- UDAT_REL_UNIT_QUARTER,
-
- UDAT_REL_UNIT_MONTH,
-
- UDAT_REL_UNIT_WEEK,
-
- UDAT_REL_UNIT_DAY,
-
- UDAT_REL_UNIT_HOUR,
-
- UDAT_REL_UNIT_MINUTE,
-
- UDAT_REL_UNIT_SECOND,
-
- UDAT_REL_UNIT_SUNDAY,
-
- UDAT_REL_UNIT_MONDAY,
-
- UDAT_REL_UNIT_TUESDAY,
-
- UDAT_REL_UNIT_WEDNESDAY,
-
- UDAT_REL_UNIT_THURSDAY,
-
- UDAT_REL_UNIT_FRIDAY,
-
- UDAT_REL_UNIT_SATURDAY,
- #ifndef U_HIDE_DEPRECATED_API
-
- UDAT_REL_UNIT_COUNT
- #endif
- } URelativeDateTimeUnit;
- typedef enum URelativeDateTimeFormatterField {
-
- UDAT_REL_LITERAL_FIELD,
-
- UDAT_REL_NUMERIC_FIELD,
- } URelativeDateTimeFormatterField;
- struct URelativeDateTimeFormatter;
- typedef struct URelativeDateTimeFormatter URelativeDateTimeFormatter;
- U_STABLE URelativeDateTimeFormatter* U_EXPORT2
- ureldatefmt_open( const char* locale,
- UNumberFormat* nfToAdopt,
- UDateRelativeDateTimeFormatterStyle width,
- UDisplayContext capitalizationContext,
- UErrorCode* status );
- U_STABLE void U_EXPORT2
- ureldatefmt_close(URelativeDateTimeFormatter *reldatefmt);
- struct UFormattedRelativeDateTime;
- typedef struct UFormattedRelativeDateTime UFormattedRelativeDateTime;
- U_STABLE UFormattedRelativeDateTime* U_EXPORT2
- ureldatefmt_openResult(UErrorCode* ec);
- U_STABLE const UFormattedValue* U_EXPORT2
- ureldatefmt_resultAsValue(const UFormattedRelativeDateTime* ufrdt, UErrorCode* ec);
- U_STABLE void U_EXPORT2
- ureldatefmt_closeResult(UFormattedRelativeDateTime* ufrdt);
- #if U_SHOW_CPLUSPLUS_API
- U_NAMESPACE_BEGIN
- U_DEFINE_LOCAL_OPEN_POINTER(LocalURelativeDateTimeFormatterPointer, URelativeDateTimeFormatter, ureldatefmt_close);
- U_DEFINE_LOCAL_OPEN_POINTER(LocalUFormattedRelativeDateTimePointer, UFormattedRelativeDateTime, ureldatefmt_closeResult);
- U_NAMESPACE_END
- #endif
- U_STABLE int32_t U_EXPORT2
- ureldatefmt_formatNumeric( const URelativeDateTimeFormatter* reldatefmt,
- double offset,
- URelativeDateTimeUnit unit,
- UChar* result,
- int32_t resultCapacity,
- UErrorCode* status);
- U_STABLE void U_EXPORT2
- ureldatefmt_formatNumericToResult(
- const URelativeDateTimeFormatter* reldatefmt,
- double offset,
- URelativeDateTimeUnit unit,
- UFormattedRelativeDateTime* result,
- UErrorCode* status);
- U_STABLE int32_t U_EXPORT2
- ureldatefmt_format( const URelativeDateTimeFormatter* reldatefmt,
- double offset,
- URelativeDateTimeUnit unit,
- UChar* result,
- int32_t resultCapacity,
- UErrorCode* status);
- U_STABLE void U_EXPORT2
- ureldatefmt_formatToResult(
- const URelativeDateTimeFormatter* reldatefmt,
- double offset,
- URelativeDateTimeUnit unit,
- UFormattedRelativeDateTime* result,
- UErrorCode* status);
- U_STABLE int32_t U_EXPORT2
- ureldatefmt_combineDateAndTime( const URelativeDateTimeFormatter* reldatefmt,
- const UChar * relativeDateString,
- int32_t relativeDateStringLen,
- const UChar * timeString,
- int32_t timeStringLen,
- UChar* result,
- int32_t resultCapacity,
- UErrorCode* status );
- #endif
- #endif
|