#include "aboutdialog.h" #include #include #include #include #include #include #include #include #include AboutDialog::AboutDialog(QWidget *parent) : QDialog(parent) , m_tabWidget(new QTabWidget) , m_buttonBox(new QDialogButtonBox) , m_helpTextEdit(new QTextBrowser) , m_aboutTextEdit(new QTextBrowser) , m_specialThanksTextEdit(new QTextBrowser) , m_licenseTextEdit(new QTextBrowser) , m_3rdPartyLibsTextEdit(new QTextBrowser) { this->setWindowTitle(tr("About")); const QStringList helpStr { QStringLiteral("

%1

").arg(tr("Launch application with image file path as argument to load the file.")), QStringLiteral("

%1

").arg(tr("Drag and drop image file onto the window is also supported.")), QStringLiteral("

%1

").arg(tr("None of the operations in this application will alter the pictures on disk.")), QStringLiteral("

%1

").arg(tr("Context menu option explanation:")), QStringLiteral("
    "), // blumia: Chain two arg() here since it seems lupdate will remove one of them if we use // the old `arg(QCoreApp::translate(), tr())` way, but it's worth to mention // `arg(QCoreApp::translate(), this->tr())` works, but lupdate will complain about the usage. QStringLiteral("
  • %1:
    %2
  • ") .arg(QCoreApplication::translate("MainWindow", "Stay on top")) .arg(tr("Make window stay on top of all other windows.")), QStringLiteral("
  • %1:
    %2
  • ") .arg(QCoreApplication::translate("MainWindow", "Protected mode")) .arg(tr("Avoid close window accidentally. (eg. by double clicking the window)")), QStringLiteral("
") }; const QStringList aboutStr { QStringLiteral("

"), qApp->applicationDisplayName(), #ifdef GIT_DESCRIBE_VERSION_STRING (QStringLiteral("
") + tr("Version: %1").arg(GIT_DESCRIBE_VERSION_STRING)), #endif // GIT_DESCRIBE_VERSION_STRING QStringLiteral("
"), tr("Copyright (c) %1 %2", "%1 is year, %2 is the name of copyright holder(s)") .arg(QStringLiteral("2022"), QStringLiteral("@BLumia")), QStringLiteral("
"), tr("Logo designed by %1").arg(QStringLiteral("@Lovelyblack")), QStringLiteral("
"), tr("Built with Qt %1 (%2)").arg(QT_VERSION_STR, QSysInfo::buildCpuArchitecture()), QStringLiteral("
%2").arg("https://github.com/BLumia/pineapple-pictures", tr("Source code")), QStringLiteral("
") }; QFile translaterHtml(":/plain/translators.html"); bool canOpenFile = translaterHtml.open(QIODevice::ReadOnly); const QByteArray & translatorList = canOpenFile ? translaterHtml.readAll() : ""; const QStringList specialThanksStr { QStringLiteral("

%1

%3

%4

").arg( tr("Contributors"), QStringLiteral("https://github.com/BLumia/pineapple-pictures/graphs/contributors"), tr("List of contributors on GitHub"), tr("Thanks to all people who contributed to this project.") ), QStringLiteral("

%1

%2

%3").arg( tr("Translators"), tr("I would like to thank the following people who volunteered to translate this application."), translatorList ) }; const QStringList licenseStr { QStringLiteral("

%1

").arg(tr("Your Rights")), QStringLiteral("

%1

%2

  • %3
  • %4
  • %5
  • %6
").arg( tr("%1 is released under the MIT License."), // %1 tr("This license grants people a number of freedoms:"), // %2 tr("You are free to use %1, for any purpose"), // %3 tr("You are free to distribute %1"), // %4 tr("You can study how %1 works and change it"), // %5 tr("You can distribute changed versions of %1") // %6 ).arg(QStringLiteral("%1")), QStringLiteral("

%1

").arg(tr("The MIT license guarantees you this freedom. Nobody is ever permitted to take it away.")), QStringLiteral("
%2
") }; const QString mitLicense(QStringLiteral(R"(Expat/MIT License Copyright (c) 2020 BLumia Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. )")); const QStringList thirdPartyLibsStr { QStringLiteral("

%1

").arg(tr("Third-party Libraries used by %1")), tr("%1 is built on the following free software libraries:", "Free as in freedom"), QStringLiteral("
    "), #ifdef HAVE_EXIV2_VERSION QStringLiteral("
  • %2: %3
  • ").arg("https://www.exiv2.org/", "Exiv2", "GPLv2"), #endif // EXIV2_VERSION QStringLiteral("
  • %2: %3
  • ").arg("https://www.qt.io/", "Qt", "GPLv2 + GPLv3 + LGPLv2.1 + LGPLv3"), QStringLiteral("
") }; m_helpTextEdit->setText(helpStr.join('\n')); m_aboutTextEdit->setText(aboutStr.join('\n')); m_aboutTextEdit->setOpenExternalLinks(true); m_specialThanksTextEdit->setText(specialThanksStr.join('\n')); m_specialThanksTextEdit->setOpenExternalLinks(true); m_licenseTextEdit->setText(licenseStr.join('\n').arg(qApp->applicationDisplayName(), mitLicense)); m_3rdPartyLibsTextEdit->setText(thirdPartyLibsStr.join('\n').arg(QStringLiteral("%1").arg(qApp->applicationDisplayName()))); m_3rdPartyLibsTextEdit->setOpenExternalLinks(true); m_tabWidget->addTab(m_helpTextEdit, tr("&Help")); m_tabWidget->addTab(m_aboutTextEdit, tr("&About")); m_tabWidget->addTab(m_specialThanksTextEdit, tr("&Special Thanks")); m_tabWidget->addTab(m_licenseTextEdit, tr("&License")); m_tabWidget->addTab(m_3rdPartyLibsTextEdit, tr("&Third-party Libraries")); m_buttonBox->setStandardButtons(QDialogButtonBox::Close); connect(m_buttonBox, QOverload::of(&QDialogButtonBox::clicked), this, [this](){ this->close(); }); setLayout(new QVBoxLayout); layout()->addWidget(m_tabWidget); layout()->addWidget(m_buttonBox); setMinimumSize(361, 161); // not sure why it complain "Unable to set geometry" setWindowFlag(Qt::WindowContextHelpButtonHint, false); } AboutDialog::~AboutDialog() { } QSize AboutDialog::sizeHint() const { return QSize(520, 350); }