282582c005
remove duplicatesfromthe list generated by ICU. * BTimeZone : remove Code, rename Name to GetName. The class is likely to change again for further optimization. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37719 a95241bf-73f2-0310-859d-f6bbb57e9c96
137 lines
3.5 KiB
C++
137 lines
3.5 KiB
C++
#ifndef _COUNTRY_H_
|
|
#define _COUNTRY_H_
|
|
|
|
|
|
#include <List.h>
|
|
#include <LocaleStrings.h>
|
|
#include <Locker.h>
|
|
#include <String.h>
|
|
#include <SupportDefs.h>
|
|
|
|
|
|
class BBitmap;
|
|
class BMessage;
|
|
|
|
namespace icu_44 {
|
|
class DateFormat;
|
|
class Locale;
|
|
}
|
|
|
|
|
|
enum {
|
|
B_METRIC = 0,
|
|
B_US
|
|
};
|
|
|
|
typedef enum {
|
|
B_DATE_ELEMENT_INVALID = B_BAD_DATA,
|
|
B_DATE_ELEMENT_YEAR = 0,
|
|
B_DATE_ELEMENT_MONTH,
|
|
B_DATE_ELEMENT_DAY,
|
|
B_DATE_ELEMENT_AM_PM,
|
|
B_DATE_ELEMENT_HOUR,
|
|
B_DATE_ELEMENT_MINUTE,
|
|
B_DATE_ELEMENT_SECOND
|
|
} BDateElement;
|
|
|
|
|
|
class BCountry {
|
|
public:
|
|
BCountry(const char* languageCode, const char* countryCode);
|
|
BCountry(const char* languageAndCountryCode = "en_US");
|
|
BCountry(const BCountry& other);
|
|
BCountry& operator=(const BCountry& other);
|
|
virtual ~BCountry();
|
|
|
|
bool Name(BString& name) const;
|
|
bool LocaleName(BString& name) const;
|
|
const char* Code() const;
|
|
status_t GetIcon(BBitmap* result);
|
|
|
|
const char* GetString(uint32 id) const;
|
|
|
|
// Date
|
|
|
|
status_t FormatDate(char* string, size_t maxSize, time_t time,
|
|
bool longFormat);
|
|
status_t FormatDate(BString* string, time_t time,
|
|
bool longFormat);
|
|
status_t FormatDate(BString* string, int*& fieldPositions,
|
|
int& fieldCount, time_t time, bool longFormat);
|
|
status_t DateFields(BDateElement*& fields, int& fieldCount,
|
|
bool longFormat);
|
|
status_t DateFormat(BString&, bool longFormat);
|
|
status_t SetDateFormat(const char* formatString,
|
|
bool longFormat = true);
|
|
|
|
int StartOfWeek();
|
|
|
|
// Time
|
|
|
|
status_t FormatTime(char* string, size_t maxSize, time_t time,
|
|
bool longFormat);
|
|
status_t FormatTime(BString* string, time_t time,
|
|
bool longFormat);
|
|
status_t FormatTime(BString* string, int*& fieldPositions,
|
|
int& fieldCount, time_t time, bool longFormat);
|
|
status_t TimeFields(BDateElement*& fields, int& fieldCount,
|
|
bool longFormat);
|
|
|
|
status_t SetTimeFormat(const char* formatString,
|
|
bool longFormat = true);
|
|
status_t TimeFormat(BString&, bool longFormat);
|
|
|
|
// numbers
|
|
|
|
virtual void FormatNumber(char* string, size_t maxSize, double value);
|
|
virtual status_t FormatNumber(BString* string, double value);
|
|
virtual void FormatNumber(char* string, size_t maxSize, int32 value);
|
|
virtual void FormatNumber(BString* string, int32 value);
|
|
|
|
bool DecimalPoint(BString&) const;
|
|
bool ThousandsSeparator(BString&) const;
|
|
bool Grouping(BString&) const;
|
|
|
|
bool PositiveSign(BString&) const;
|
|
bool NegativeSign(BString&) const;
|
|
|
|
// measurements
|
|
|
|
virtual int8 Measurement() const;
|
|
|
|
// monetary
|
|
|
|
virtual ssize_t FormatMonetary(char* string, size_t maxSize,
|
|
double value);
|
|
virtual ssize_t FormatMonetary(BString* string, double value);
|
|
|
|
bool CurrencySymbol(BString&) const;
|
|
bool InternationalCurrencySymbol(BString&) const;
|
|
bool MonDecimalPoint(BString&) const;
|
|
bool MonThousandsSeparator(BString&) const;
|
|
bool MonGrouping(BString&) const;
|
|
virtual int32 MonFracDigits() const;
|
|
|
|
// timezones
|
|
int GetTimeZones(BList& timezones);
|
|
|
|
private:
|
|
icu_44::DateFormat* _LockDateFormatter(bool longFormat);
|
|
icu_44::DateFormat* _LockTimeFormatter(bool longFormat);
|
|
void _UnlockDateFormatter(bool longFormat);
|
|
void _UnlockTimeFormatter(bool longFormat);
|
|
|
|
icu_44::DateFormat* fICULongDateFormatter;
|
|
icu_44::DateFormat* fICUShortDateFormatter;
|
|
icu_44::DateFormat* fICULongTimeFormatter;
|
|
icu_44::DateFormat* fICUShortTimeFormatter;
|
|
icu_44::Locale* fICULocale;
|
|
|
|
BLocker fLongDateLock;
|
|
BLocker fShortDateLock;
|
|
BLocker fLongTimeLock;
|
|
BLocker fShortTimeLock;
|
|
};
|
|
|
|
#endif /* _COUNTRY_H_ */
|