52cdfde04b
* use only a single static object (MutableLocaleRoster) instead of two, which avoids any problems if the order of static object destruction would destroy RosterData before MutableLocaleRoster * rename BPrivate::RosterData to BPrivate::LocaleRosterData and move it into a header and implementation file of its own This should hopefully fix problems encountered with a clang-compiled Locale Kit.
67 lines
1.5 KiB
C++
67 lines
1.5 KiB
C++
/*
|
|
* Copyright 2010-2012, Haiku. All rights reserved.
|
|
* Distributed under the terms of the MIT license.
|
|
*/
|
|
#ifndef _MUTABLE_LOCALE_ROSTER_H_
|
|
#define _MUTABLE_LOCALE_ROSTER_H_
|
|
|
|
|
|
#include <Collator.h>
|
|
#include <FormattingConventions.h>
|
|
#include <image.h>
|
|
#include <Language.h>
|
|
#include <List.h>
|
|
#include <Locale.h>
|
|
#include <Locker.h>
|
|
#include <LocaleRoster.h>
|
|
#include <Message.h>
|
|
#include <Resources.h>
|
|
#include <TimeZone.h>
|
|
|
|
|
|
class BLocale;
|
|
class BCatalog;
|
|
class BCatalogData;
|
|
|
|
struct entry_ref;
|
|
|
|
|
|
namespace BPrivate {
|
|
|
|
|
|
class MutableLocaleRoster : public BLocaleRoster {
|
|
public:
|
|
MutableLocaleRoster();
|
|
~MutableLocaleRoster();
|
|
|
|
static MutableLocaleRoster* Default();
|
|
|
|
status_t SetDefaultFormattingConventions(
|
|
const BFormattingConventions& conventions);
|
|
status_t SetDefaultTimeZone(const BTimeZone& zone);
|
|
|
|
status_t SetPreferredLanguages(const BMessage* message);
|
|
// the message contains one or more
|
|
// 'language'-string-fields which
|
|
// contain the language-name(s)
|
|
status_t SetFilesystemTranslationPreferred(
|
|
bool preferred);
|
|
|
|
status_t LoadSystemCatalog(BCatalog* catalog) const;
|
|
|
|
BCatalogData* LoadCatalog(const entry_ref& catalogOwner,
|
|
const char* language = NULL,
|
|
int32 fingerprint = 0) const;
|
|
status_t UnloadCatalog(BCatalogData* catalogData);
|
|
|
|
BCatalogData* CreateCatalog(const char* type,
|
|
const char* signature,
|
|
const char* language);
|
|
};
|
|
|
|
|
|
} // namespace BPrivate
|
|
|
|
|
|
#endif // _MUTABLE_LOCALE_ROSTER_H_
|