summaryrefslogtreecommitdiff
path: root/shared/localization.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:11:09 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:11:09 +0200
commit9cc790869ed3905c78c7eeeb0bb44f800b3f2af4 (patch)
tree1c085bbf2302be294866c4fc6e0d225f8abbc346 /shared/localization.h
parent3.14 (diff)
downloadFreeFileSync-9cc790869ed3905c78c7eeeb0bb44f800b3f2af4.tar.gz
FreeFileSync-9cc790869ed3905c78c7eeeb0bb44f800b3f2af4.tar.bz2
FreeFileSync-9cc790869ed3905c78c7eeeb0bb44f800b3f2af4.zip
3.15
Diffstat (limited to 'shared/localization.h')
-rw-r--r--shared/localization.h70
1 files changed, 0 insertions, 70 deletions
diff --git a/shared/localization.h b/shared/localization.h
deleted file mode 100644
index 3ce7bf24..00000000
--- a/shared/localization.h
+++ /dev/null
@@ -1,70 +0,0 @@
-// **************************************************************************
-// * This file is part of the FreeFileSync project. It is distributed under *
-// * GNU General Public License: http://www.gnu.org/licenses/gpl.html *
-// * Copyright (C) 2008-2011 ZenJu (zhnmju123 AT gmx.de) *
-// **************************************************************************
-//
-#ifndef MISC_H_INCLUDED
-#define MISC_H_INCLUDED
-
-#include <wx/intl.h>
-#include <vector>
-#include <memory>
-
-class Translation;
-
-
-namespace ffs3
-{
-//language independent global variables: just use operating system's default setting!
-wxString getThousandsSeparator();
-wxString getDecimalPoint();
-
-
-struct LocInfoLine
-{
- wxLanguage languageID;
- wxString languageName;
- wxString languageFile;
- wxString translatorName;
- wxString languageFlag;
-};
-
-class LocalizationInfo
-{
-public:
- static const std::vector<LocInfoLine>& getMapping();
-
-private:
- LocalizationInfo();
- LocalizationInfo(const LocalizationInfo&);
- LocalizationInfo& operator=(const LocalizationInfo&);
-
- std::vector<LocInfoLine> locMapping;
-};
-
-
-class CustomLocale : public wxLocale
-{
-public:
- static CustomLocale& getInstance();
-
- void setLanguage(int language);
-
- int getLanguage() const
- {
- return currentLanguage;
- }
-
- virtual const wxChar* GetString(const wxChar* szOrigString, const wxChar* szDomain = NULL) const;
-
-private:
- CustomLocale();
- ~CustomLocale(); //non-inline destructor for std::auto_ptr to work with forward declaration -> superfluous in this case: singleton pattern!
-
- std::auto_ptr<Translation> translationDB; //careful with forward-declarations and auto_ptr! save in this case, 'cause full class info available
- wxLanguage currentLanguage;
-};
-}
-
-#endif // MISC_H_INCLUDED
bgstack15