haiku/headers/os/locale/TimeZone.h
Oliver Tappe d1d8fda637 Next step of Locale Kit refactoring:
* BLocale now keeps language and country completely separate and
  mixes the formatting conventions into the current language's locale
  when formatting dates and times (needs to be done for number- and
  currency-formatting, too, since the digits may not be in the
  preferred language)
* optimized fetching of the flag icons such that they are all loaded
  in one go (by the locale roster) - this alone speeds up the Locale
  preflet considerably
* worked on fixing the language confusion in the Locale preflet
* fixed a couple of bugs in the Locale preflet that would lead to
  illegal characters being displayed in the date-subpart menus


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39013 a95241bf-73f2-0310-859d-f6bbb57e9c96
2010-10-19 21:36:44 +00:00

65 lines
1.4 KiB
C++

/*
* Copyright 2010, Haiku, Inc. All rights reserved.
* Distributed under the terms of the MIT License.
*/
#ifndef _TIME_ZONE_H
#define _TIME_ZONE_H
#include <String.h>
namespace icu_44 {
class Locale;
class TimeZone;
}
class BLanguage;
class BTimeZone {
public:
BTimeZone(const char* zoneID = NULL,
const BLanguage* language = NULL);
BTimeZone(const BTimeZone& other);
~BTimeZone();
BTimeZone& operator=(const BTimeZone& source);
const BString& ID() const;
const BString& Name() const;
const BString& DaylightSavingName() const;
const BString& ShortName() const;
const BString& ShortDaylightSavingName() const;
int OffsetFromGMT() const;
bool SupportsDaylightSaving() const;
status_t InitCheck() const;
status_t SetTo(const char* zoneID,
const BLanguage* language = NULL);
status_t SetLanguage(const BLanguage* language);
static const char* kNameOfGmtZone;
class Private;
private:
friend class Private;
icu_44::TimeZone* fICUTimeZone;
icu_44::Locale* fICULocale;
status_t fInitStatus;
mutable uint32 fInitializedFields;
mutable BString fZoneID;
mutable BString fName;
mutable BString fDaylightSavingName;
mutable BString fShortName;
mutable BString fShortDaylightSavingName;
mutable int fOffsetFromGMT;
mutable bool fSupportsDaylightSaving;
};
#endif // _TIME_ZONE_H