rssguard/src/librssguard/gui/dialogs/formabout.cpp
2023-09-18 13:35:13 +02:00

138 lines
6.2 KiB
C++

// For license of this file, see <project-root-folder>/LICENSE.md.
#include "gui/dialogs/formabout.h"
#include "definitions/definitions.h"
#include "gui/guiutilities.h"
#include "miscellaneous/application.h"
#include "miscellaneous/iconfactory.h"
#include "miscellaneous/settings.h"
#include "miscellaneous/settingsproperties.h"
#include "miscellaneous/textfactory.h"
#include "network-web/webfactory.h"
#include <QFile>
#include <QJsonArray>
#include <QJsonObject>
#include <QPlainTextEdit>
#include <QTextStream>
FormAbout::FormAbout(bool go_to_changelog, QWidget* parent) : QDialog(parent) {
m_ui.setupUi(this);
m_ui.m_lblIcon->setPixmap(QPixmap(APP_ICON_PATH));
GuiUtilities::applyDialogProperties(*this,
qApp->icons()->fromTheme(QSL("help-about")),
tr("About %1").arg(QSL(APP_NAME)));
loadLicenseAndInformation();
loadSettingsAndPaths();
if (go_to_changelog) {
m_ui.m_tabAbout->setCurrentWidget(m_ui.m_tabChangelog);
}
}
FormAbout::~FormAbout() {}
void FormAbout::displayLicense() {
m_ui.m_tbLicenses->setPlainText(m_ui.m_cbLicenses->currentData().toString());
}
void FormAbout::loadSettingsAndPaths() {
QString settings_type;
if (qApp->settings()->type() == SettingsProperties::SettingsType::Portable) {
settings_type = tr("FULLY portable");
}
else if (qApp->settings()->type() == SettingsProperties::SettingsType::Custom) {
settings_type = tr("CUSTOM");
}
else {
settings_type = tr("NOT portable");
}
const QString user_data_path = QDir::toNativeSeparators(qApp->userDataFolder());
m_ui.m_tbResources->setPlainText(tr("User data folder (\"%5\") -> \"%1\"\n\n"
"Settings file (%3) -> \"%2\"\n"
"Skins base folder -> \"%4\"\n"
"Icon themes base folder -> \"%8\"\n"
"Node.js package folder -> \"%6\"\n"
"QtWebEngine cache folder -> \"%7\"")
.arg(user_data_path,
QDir::toNativeSeparators(qApp->settings()->fileName())
.replace(user_data_path, QSL(USER_DATA_PLACEHOLDER)),
settings_type,
QDir::toNativeSeparators(qApp->skins()->customSkinBaseFolder())
.replace(user_data_path, QSL(USER_DATA_PLACEHOLDER)),
QSL(USER_DATA_PLACEHOLDER),
QDir::toNativeSeparators(qApp->nodejs()->packageFolder())
.replace(user_data_path, QSL(USER_DATA_PLACEHOLDER)),
#if defined(USE_WEBENGINE)
QDir::toNativeSeparators(qApp->web()->engineProfile()->cachePath())
.replace(user_data_path, QSL(USER_DATA_PLACEHOLDER)),
#else
QSL("-"),
#endif
QSL(USER_DATA_PLACEHOLDER) + QDir::separator() +
QSL(APP_LOCAL_ICON_THEME_FOLDER)));
}
void FormAbout::loadLicenseAndInformation() {
connect(m_ui.m_cbLicenses, QOverload<int>::of(&QComboBox::currentIndexChanged), this, &FormAbout::displayLicense);
QJsonDocument licenses_index = QJsonDocument::fromJson(IOFactory::readFile(APP_INFO_PATH + QSL("/licenses.json")));
for (const QJsonValue& license : licenses_index.array()) {
const QJsonObject license_obj = license.toObject();
const QString license_text =
QString::fromUtf8(IOFactory::readFile(APP_INFO_PATH + QSL("/") + license_obj[QSL("file")].toString()));
const QString license_title =
license_obj[QSL("title")].toString() + QSL(": ") + license_obj[QSL("components")].toString();
m_ui.m_cbLicenses->addItem(license_title, license_text);
}
try {
#if QT_VERSION >= 0x050E00 // Qt >= 5.14.0
m_ui.m_txtChangelog->setMarkdown(IOFactory::readFile(APP_INFO_PATH + QL1S("/CHANGELOG")));
#else
m_ui.m_txtChangelog->setText(IOFactory::readFile(APP_INFO_PATH + QL1S("/CHANGELOG")));
#endif
m_ui.m_txtChangelog->document()->setIndentWidth(16.0);
}
catch (...) {
m_ui.m_txtChangelog->setText(tr("Changelog not found."));
}
// Set other informative texts.
m_ui.m_lblDesc->setText(tr("<b>%8</b><br>"
"<b>Version:</b> %1 (built on %2/%3)<br>"
"<b>Revision:</b> %4<br>"
"<b>Build date:</b> %5<br>"
"<b>Qt:</b> %6 (compiled against %7)<br>")
.arg(qApp->applicationVersion(),
QSL(APP_SYSTEM_NAME),
QSL(APP_SYSTEM_VERSION),
QSL(APP_REVISION),
qApp->localization()
->loadedLocale()
.toString(TextFactory::parseDateTime(QSL("%1 %2").arg(__DATE__, __TIME__)),
QLocale::FormatType::ShortFormat),
qVersion(),
QSL(QT_VERSION_STR),
QSL(APP_NAME)));
m_ui.m_txtInfo->setText(tr("<body>%5 is a (very) tiny feed reader."
"<br><br>This software is distributed under the terms of GNU General "
"Public License, version 3."
"<br><br>Contacts:"
"<ul><li><a href=\"mailto://%1\">%1</a> ~e-mail</li>"
"<li><a href=\"%2\">%2</a> ~website</li></ul>"
"You can obtain source code for %5 from its website."
"<br><br><br>Copyright (C) 2011-%3 %4</body>")
.arg(QSL(APP_EMAIL),
QSL(APP_URL),
QString::number(QDateTime::currentDateTime().date().year()),
QSL(APP_AUTHOR),
QSL(APP_NAME)));
}