00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef LOCALEMGR_H
00024 #define LOCALEMGR_H
00025
00026 #include <string>
00027 #include <map>
00028 #include <list>
00029 #include <swconfig.h>
00030 #include <swlocale.h>
00031
00032 #include <defs.h>
00033
00034 SWORD_NAMESPACE_START
00035
00036 typedef std::map < std::string, SWLocale *, std::less < std::string > >LocaleMap;
00037
00049 class SWDLLEXPORT LocaleMgr
00050 {
00051 private:
00052 void deleteLocales ();
00053 char *defaultLocaleName;
00054 LocaleMgr(const LocaleMgr &);
00055
00056 protected:
00057 LocaleMap locales;
00058
00059 public:
00063 LocaleMgr (const char *iConfigPath = 0);
00064
00068 virtual ~ LocaleMgr ();
00069
00075 virtual SWLocale *getLocale (const char *name);
00076
00081 virtual std::list < std::string > getAvailableLocales ();
00082
00090 virtual const char *translate (const char *text, const char *localeName = 0);
00091
00096 virtual const char *getDefaultLocaleName ();
00097
00102 virtual void setDefaultLocaleName (const char *name);
00103
00107 static LocaleMgr systemLocaleMgr;
00108
00109
00112 virtual void loadConfigDir(const char *ipath);
00113
00114 };
00115
00116 SWORD_NAMESPACE_END
00117 #endif