b254319360
-MarkForTranslation was not scanned by collectcatkeys, improved the regexp to take it into account -Some gristing was missing in jamrules, added a bit, still seem to miss some. -Replaced $(var:B).ext with $(var:S=.ext) as it is the proper way in order not to loose grist and mess things up -Removed icu include and replaced direct class nesting with pointer to avoid binary compatibility breakage on ICU updates. -Fixed TimeFormatSettingsView to properly include needed icu things. Should not be there, actually. Needs cleanup. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33210 a95241bf-73f2-0310-859d-f6bbb57e9c96
88 lines
2.2 KiB
C++
88 lines
2.2 KiB
C++
#ifndef _COUNTRY_H_
|
|
#define _COUNTRY_H_
|
|
|
|
|
|
#include <SupportDefs.h>
|
|
#include <LocaleStrings.h>
|
|
#include <String.h>
|
|
|
|
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;
|
|
|
|
// see definitions below
|
|
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;
|
|
|
|
// 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_ */
|