summaryrefslogtreecommitdiff
path: root/library/misc.cpp
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 16:57:45 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 16:57:45 +0200
commit2a3ebac62eb6dd88122c0f447ea90ce368373d3a (patch)
treefae5c18deaecfb6f39d4d66dd3de8ce730b2025b /library/misc.cpp
parent1.17 (diff)
downloadFreeFileSync-2a3ebac62eb6dd88122c0f447ea90ce368373d3a.tar.gz
FreeFileSync-2a3ebac62eb6dd88122c0f447ea90ce368373d3a.tar.bz2
FreeFileSync-2a3ebac62eb6dd88122c0f447ea90ce368373d3a.zip
1.18
Diffstat (limited to 'library/misc.cpp')
-rw-r--r--library/misc.cpp169
1 files changed, 0 insertions, 169 deletions
diff --git a/library/misc.cpp b/library/misc.cpp
deleted file mode 100644
index 0d5761d6..00000000
--- a/library/misc.cpp
+++ /dev/null
@@ -1,169 +0,0 @@
-#include "misc.h"
-#include <wx/msgdlg.h>
-#include "resources.h"
-#include "globalFunctions.h"
-
-
-inline
-void exchangeEscapeChars(wxString& data)
-{
- wxString output;
-
- const wxChar* input = data.c_str();
-
- wxChar value;
- while ((value = *input) != wxChar(0))
- {
- //read backslash
- if (value == wxChar('\\'))
- {
- //read next character
- ++input;
- if ((value = *input) == wxChar(0))
- break;
-
- switch (value)
- {
- case wxChar('\\'):
- output += wxChar('\\');
- break;
- case wxChar('n'):
- output += wxChar('\n');
- break;
- case wxChar('t'):
- output += wxChar('\t');
- break;
- case wxChar('\"'):
- output += wxChar('\"');
- break;
- default:
- output += value;
- }
- }
- else
- output += value;
-
- ++input;
- }
- data = output;
-}
-
-
-CustomLocale::CustomLocale() :
- wxLocale(),
- currentLanguage(wxLANGUAGE_ENGLISH)
-{}
-
-
-void CustomLocale::setLanguage(const int language)
-{
- currentLanguage = language;
-
- std::string languageFile;
- switch (language)
- {
- case wxLANGUAGE_CHINESE_SIMPLIFIED:
- languageFile = "Languages/chinese_simple.lng";
- break;
- case wxLANGUAGE_DUTCH:
- languageFile = "Languages/dutch.lng";
- break;
- case wxLANGUAGE_FRENCH:
- languageFile = "Languages/french.lng";
- break;
- case wxLANGUAGE_GERMAN:
- languageFile = "Languages/german.lng";
- break;
- case wxLANGUAGE_HUNGARIAN:
- languageFile = "Languages/hungarian.lng";
- break;
- case wxLANGUAGE_ITALIAN:
- languageFile = "Languages/italian.lng";
- break;
- case wxLANGUAGE_JAPANESE:
- languageFile = "Languages/japanese.lng";
- break;
- case wxLANGUAGE_POLISH:
- languageFile = "Languages/polish.lng";
- break;
- case wxLANGUAGE_PORTUGUESE:
- languageFile = "Languages/portuguese.lng";
- break;
- case wxLANGUAGE_SLOVENIAN:
- languageFile = "Languages/slovenian.lng";
- break;
- case wxLANGUAGE_SPANISH:
- languageFile = "Languages/spanish.lng";
- break;
- default:
- languageFile.clear();
- currentLanguage = wxLANGUAGE_ENGLISH;
- }
-
- static bool initialized = false; //wxLocale is a "static" too!
- if (!initialized)
- {
- initialized = true;
- wxLocale::Init(currentLanguage, wxLOCALE_LOAD_DEFAULT | wxLOCALE_CONV_ENCODING);
- }
-
- //load language file into buffer
- translationDB.clear();
- const int bufferSize = 100000;
- char temp[bufferSize];
- if (!languageFile.empty())
- {
- std::ifstream langFile(languageFile.c_str(), std::ios::binary);
- if (langFile)
- {
- TranslationLine currentLine;
-
- //Delimiter:
- //----------
- //Linux: 0xa \n
- //Mac: 0xd \r
- //Win: 0xd 0xa \r\n <- language files are in Windows format
- for (int rowNumber = 0; langFile.getline(temp, bufferSize, 0xd); ++rowNumber) //specify delimiter explicitly
- {
- langFile.get(); //discard the 0xa character
-
- wxString formattedString = wxString::FromUTF8(temp);
- //wxString formattedString = wxString::From8BitData(temp);
-
- exchangeEscapeChars(formattedString);
-
- if (rowNumber%2 == 0)
- currentLine.original = formattedString;
- else
- {
- currentLine.translation = formattedString;
- translationDB.insert(currentLine);
- }
- }
- langFile.close();
- }
- else
- wxMessageBox(wxString(_("Error reading file:")) + wxT(" \"") + wxString(languageFile.c_str(), wxConvUTF8) + wxT("\""), _("An exception occured!"), wxOK | wxICON_ERROR);
- }
- else
- ; //if languageFile is empty texts will be english per default
-
- //these global variables need to be redetermined on language selection
- GlobalResources::DECIMAL_POINT = _(".");
- GlobalResources::THOUSANDS_SEPARATOR = _(",");
-}
-
-
-const wxChar* CustomLocale::GetString(const wxChar* szOrigString, const wxChar* szDomain) const
-{
- TranslationLine currentLine;
- currentLine.original = szOrigString;
-
- //look for translation in buffer table
- Translation::iterator i;
- if ((i = translationDB.find(currentLine)) != translationDB.end())
- return i->translation.c_str();
-
- //fallback
- return szOrigString;
-}
bgstack15