haiku/headers/os/locale/Country.h
Adrien Destugues 2f0eb7b11e * Introduce a new method in BCountry to get the first day of week (monday or sunday)
* Localize date in deskbar properly, and use the new API to show the calendar. The "show european date" checkbox is now gone.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37344 a95241bf-73f2-0310-859d-f6bbb57e9c96
2010-07-02 17:15:55 +00:00

93 lines
2.3 KiB
C++

#ifndef _COUNTRY_H_
#define _COUNTRY_H_
#include <SupportDefs.h>
#include <LocaleStrings.h>
#include <String.h>
class BBitmap;
namespace icu_4_2 {
class DateFormat;
class Locale;
}
enum {
B_METRIC = 0,
B_US
};
class BCountry {
public:
BCountry(const char* languageCode, const char* countryCode);
BCountry(const char* languageAndCountryCode = "en_US");
virtual ~BCountry();
virtual bool Name(BString&) const;
const char* Code() const;
status_t GetIcon(BBitmap* result);
const char* GetString(uint32 id) const;
// date & time
virtual void FormatDate(char* string, size_t maxSize, time_t time,
bool longFormat);
virtual void FormatDate(BString* string, time_t time, bool longFormat);
virtual void FormatTime(char* string, size_t maxSize, time_t time,
bool longFormat);
virtual void FormatTime(BString* string, time_t time,
bool longFormat);
bool DateFormat(BString&, bool longFormat) const;
void SetDateFormat(const char* formatString,
bool longFormat = true);
bool TimeFormat(BString&, bool longFormat) const;
const char* DateSeparator() const;
const char* TimeSeparator() const;
int StartOfWeek();
// 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;
private:
icu_4_2::DateFormat* fICULongDateFormatter;
icu_4_2::DateFormat* fICUShortDateFormatter;
const char** fStrings;
icu_4_2::Locale* fICULocale;
};
#endif /* _COUNTRY_H_ */