gta5view/GlobalString.cpp

85 lines
2.6 KiB
C++
Raw Permalink Normal View History

2017-10-09 08:35:48 +02:00
/*****************************************************************************
* gta5view Grand Theft Auto V Profile Viewer
* Copyright (C) 2016-2021 Syping
2017-10-09 08:35:48 +02:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*****************************************************************************/
#include "TranslationClass.h"
#include "GlobalString.h"
#include "config.h"
#include <QStringBuilder>
#include <QStringList>
#include <QFileInfo>
#include <QSettings>
#include <QLocale>
#include <QDebug>
GlobalString::GlobalString()
{
}
QMap<QString, QString> GlobalString::getGlobalMap()
{
QMap<QString, QString> globalMap;
QSettings globalFile(getLanguageFile(), QSettings::IniFormat);
2020-09-28 05:33:04 +02:00
#if QT_VERSION < 0x060000
2017-10-09 08:35:48 +02:00
globalFile.setIniCodec("UTF-8");
2020-09-28 05:33:04 +02:00
#endif
2017-10-09 08:35:48 +02:00
globalFile.beginGroup("Global");
for (const QString &globalStr : globalFile.childKeys()) {
2017-10-09 08:35:48 +02:00
globalMap[globalStr] = globalFile.value(globalStr, globalStr).toString();
}
globalFile.endGroup();
return globalMap;
}
QString GlobalString::getString(QString valueStr, bool *ok)
{
QString globalString = valueStr;
QSettings globalFile(getLanguageFile(), QSettings::IniFormat);
2020-09-28 05:33:04 +02:00
#if QT_VERSION < 0x060000
2017-10-09 08:35:48 +02:00
globalFile.setIniCodec("UTF-8");
2020-09-28 05:33:04 +02:00
#endif
2017-10-09 08:35:48 +02:00
globalFile.beginGroup("Global");
QStringList globalStrList = globalFile.childKeys();
if (globalStrList.contains(valueStr)) {
if (ok != nullptr)
*ok = true;
2017-10-09 08:35:48 +02:00
globalString = globalFile.value(valueStr, valueStr).toString();
}
globalFile.endGroup();
return globalString;
}
QString GlobalString::getLanguageFile()
{
QString language = getLanguage();
QString languageFile = ":/global/global." % language % ".ini";
2021-02-03 20:22:00 +01:00
#if QT_VERSION >= 0x050200
if (!QFileInfo::exists(languageFile))
2017-10-09 08:35:48 +02:00
languageFile = ":/global/global.en.ini";
2021-02-03 20:22:00 +01:00
#else
if (!QFileInfo(languageFile).exists())
languageFile = ":/global/global.en.ini";
#endif
2017-10-09 08:35:48 +02:00
return languageFile;
}
QString GlobalString::getLanguage()
{
return Translator->getCurrentAreaLanguage();
2017-10-09 08:35:48 +02:00
}