summaryrefslogtreecommitdiff
path: root/library/misc.h
diff options
context:
space:
mode:
Diffstat (limited to 'library/misc.h')
-rw-r--r--library/misc.h54
1 files changed, 0 insertions, 54 deletions
diff --git a/library/misc.h b/library/misc.h
deleted file mode 100644
index c3e960ff..00000000
--- a/library/misc.h
+++ /dev/null
@@ -1,54 +0,0 @@
-#ifndef MISC_H_INCLUDED
-#define MISC_H_INCLUDED
-
-#include <wx/string.h>
-#include <set>
-#include <wx/intl.h>
-#include <wx/panel.h>
-
-
-struct TranslationLine
-{
- wxString original;
- wxString translation;
-
- bool operator>(const TranslationLine& b ) const
- {
- return (original > b.original);
- }
- bool operator<(const TranslationLine& b) const
- {
- return (original < b.original);
- }
- bool operator==(const TranslationLine& b) const
- {
- return (original == b.original);
- }
-};
-typedef std::set<TranslationLine> Translation;
-
-
-class CustomLocale : public wxLocale
-{
-public:
- CustomLocale();
- ~CustomLocale() {}
-
- void setLanguage(const int language);
-
- int getLanguage()
- {
- return currentLanguage;
- }
-
- const wxChar* GetString(const wxChar* szOrigString, const wxChar* szDomain = NULL) const;
-
- static const std::string FfsLanguageDat;
-
-private:
- Translation translationDB;
- int currentLanguage;
-};
-
-
-#endif // MISC_H_INCLUDED
bgstack15