/** * Copyright (C) 2021 Saturneric * * This file is part of GpgFrontend. * * GpgFrontend 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. * * GpgFrontend 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 GpgFrontend. If not, see . * * The initial version of the source code is inherited from * the gpg4usb project, which is under GPL-3.0-or-later. * * All the source code of GpgFrontend was modified and released by * Saturneric starting on May 12, 2021. * * SPDX-License-Identifier: GPL-3.0-or-later * */ #include "AboutDialog.h" #include #include "core/module/ModuleManager.h" #include "core/utils/BuildInfoUtils.h" #include "ui/UIModuleManager.h" #include "ui/dialog/help/GnupgTab.h" namespace GpgFrontend::UI { AboutDialog::AboutDialog(const QString& default_tab_name, QWidget* parent) : GeneralDialog(typeid(AboutDialog).name(), parent) { this->setWindowTitle(tr("About") + " " + qApp->applicationName()); auto* tab_widget = new QTabWidget; auto* info_tab = new InfoTab(); auto* translators_tab = new TranslatorsTab(); tab_widget->addTab(info_tab, tr("About GpgFrontend")); if (Module::IsModuleActivate(kGnuPGInfoGatheringModuleID)) { auto* gnupg_tab = new GnupgTab(); tab_widget->addTab(gnupg_tab, tr("GnuPG")); } tab_widget->addTab(translators_tab, tr("Translators")); auto entries = UIModuleManager::GetInstance().QueryMountedEntries("AboutDialogTabs"); for (const auto& entry : entries) { auto* widget = entry.GetWidget(); if (widget != nullptr) { tab_widget->addTab(widget, entry.GetMetaDataByDefault("TabTitle", tr("Unnamed"))); } } connect(tab_widget, &QTabWidget::currentChanged, this, [&](int index) { GF_UI_LOG_DEBUG("current index: {}", index); }); int default_index = 0; for (int i = 0; i < tab_widget->count(); i++) { if (tab_widget->tabText(i) == default_tab_name) { default_index = i; } } if (default_index < tab_widget->count() && default_index >= 0) { tab_widget->setCurrentIndex(default_index); } auto* button_box = new QDialogButtonBox(QDialogButtonBox::Ok); connect(button_box, &QDialogButtonBox::accepted, this, &AboutDialog::close); auto* main_layout = new QVBoxLayout; main_layout->addWidget(tab_widget); main_layout->addWidget(button_box); setLayout(main_layout); this->resize(520, 620); this->setMinimumWidth(450); this->show(); } void AboutDialog::showEvent(QShowEvent* ev) { QDialog::showEvent(ev); } InfoTab::InfoTab(QWidget* parent) : QWidget(parent) { const auto gpgme_version = Module::RetrieveRTValueTypedOrDefault<>( "core", "gpgme.version", QString{"2.0.0"}); GF_UI_LOG_DEBUG("got gpgme version from rt: {}", gpgme_version); auto pixmap = QPixmap(":/icons/gpgfrontend_logo.png"); pixmap = pixmap.scaled(128, 128); auto text = "

" + qApp->applicationName() + "

" + "
" + GetProjectVersion() + "
" + "
" + GetProjectBuildGitVersion() + "
" + "
" + tr("GpgFrontend is an easy-to-use, compact, cross-platform, " "and installation-free GnuPG Frontend." "It visualizes most of the common operations of GnuPG." "GpgFrontend is licensed under the GPLv3") + "

" "" + tr("Developer:") + "
" + "Saturneric" + "

" + tr("If you have any questions or suggestions, raise an issue at") + "
" " GitHub " + tr("or send a mail to my mailing list at") + " eric@bktus.com." + "

" + tr("Built with Qt") + " " + qVersion() + ", " + OPENSSL_VERSION_TEXT + " " + tr("and") + " " + "GPGME" + " " + gpgme_version + "
" + tr("Built at") + " " + QLocale().toString(GetProjectBuildTimestamp()) + "
"; auto* layout = new QGridLayout(); auto* pixmap_label = new QLabel(); pixmap_label->setPixmap(pixmap); layout->addWidget(pixmap_label, 0, 0, 1, -1, Qt::AlignCenter); auto* about_label = new QLabel(); about_label->setText(text); about_label->setWordWrap(true); about_label->setOpenExternalLinks(true); layout->addWidget(about_label, 1, 0, 1, -1); layout->addItem( new QSpacerItem(20, 10, QSizePolicy::Minimum, QSizePolicy::Fixed), 2, 1, 1, 1); setLayout(layout); } TranslatorsTab::TranslatorsTab(QWidget* parent) : QWidget(parent) { QFile translators_file(":/TRANSLATORS"); translators_file.open(QIODevice::ReadOnly); auto* label = new QLabel(translators_file.readAll()); auto* main_layout = new QVBoxLayout(this); main_layout->addWidget(label); main_layout->addStretch(); auto* notice_label = new QLabel( tr("If you think there are any problems with the translation, why not " "participate in the translation work? If you want to participate, " "please read the document or contact me via email."), this); notice_label->setWordWrap(true); main_layout->addWidget(notice_label); setLayout(main_layout); } } // namespace GpgFrontend::UI