2020-09-28 20:10:33 +08:00
|
|
|
#include "aboutdialog.h"
|
|
|
|
|
|
|
|
#include <QAbstractButton>
|
|
|
|
#include <QDialogButtonBox>
|
|
|
|
#include <QTextBrowser>
|
|
|
|
#include <QTabWidget>
|
|
|
|
#include <QVBoxLayout>
|
|
|
|
#include <QApplication>
|
|
|
|
#include <QLabel>
|
|
|
|
#include <QPushButton>
|
|
|
|
|
|
|
|
AboutDialog::AboutDialog(QWidget *parent)
|
|
|
|
: QDialog(parent)
|
|
|
|
, m_tabWidget(new QTabWidget)
|
|
|
|
, m_buttonBox(new QDialogButtonBox)
|
|
|
|
, m_helpTextEdit(new QTextBrowser)
|
|
|
|
, m_aboutTextEdit(new QTextBrowser)
|
2020-10-05 20:43:30 +08:00
|
|
|
, m_specialThanksTextEdit(new QTextBrowser)
|
2020-09-28 20:10:33 +08:00
|
|
|
, m_licenseTextEdit(new QTextBrowser)
|
2020-10-05 20:43:30 +08:00
|
|
|
, m_3rdPartyLibsTextEdit(new QTextBrowser)
|
2020-09-28 20:10:33 +08:00
|
|
|
{
|
|
|
|
this->setWindowTitle(tr("About"));
|
|
|
|
|
|
|
|
QStringList helpStr {
|
2020-10-05 20:43:30 +08:00
|
|
|
QStringLiteral("<p>%1</p>").arg(tr("Launch application with image file path as argument to load the file.")),
|
|
|
|
QStringLiteral("<p>%1</p>").arg(tr("Drag and drop image file onto the window is also supported.")),
|
|
|
|
QStringLiteral("<p>%1</p>").arg(tr("Context menu option explanation:")),
|
|
|
|
QStringLiteral("<ul>"),
|
|
|
|
QStringLiteral("<li><b>%1</b>:<br/>%2</li>").arg(
|
|
|
|
QCoreApplication::translate("MainWindow", "Stay on top"),
|
|
|
|
this->tr("Make window stay on top of all other windows.")
|
|
|
|
),
|
|
|
|
QStringLiteral("<li><b>%1</b>:<br/>%2</li>").arg(
|
|
|
|
QCoreApplication::translate("MainWindow", "Protected mode"),
|
|
|
|
this->tr("Avoid close window accidentally. (eg. by double clicking the window)")
|
|
|
|
),
|
|
|
|
QStringLiteral("</ul>")
|
2020-09-28 20:10:33 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
QStringList aboutStr {
|
|
|
|
QStringLiteral("<center><img width='128' height='128' src=':/icons/app-icon.svg'/><br/>"),
|
|
|
|
qApp->applicationDisplayName(),
|
2020-09-29 09:45:07 +08:00
|
|
|
#ifdef GIT_DESCRIBE_VERSION_STRING
|
|
|
|
(QStringLiteral("<br/>") + tr("Version: %1").arg(GIT_DESCRIBE_VERSION_STRING)),
|
|
|
|
#endif // GIT_DESCRIBE_VERSION_STRING
|
2020-10-05 20:43:30 +08:00
|
|
|
QStringLiteral("<hr/>"),
|
|
|
|
tr("Copyright (c) 2020 %1").arg(QStringLiteral("<a href='https://github.com/BLumia'>@BLumia</a>")),
|
|
|
|
QStringLiteral("<br/>"),
|
|
|
|
tr("Logo designed by %1").arg(QStringLiteral("<a href='https://github.com/Lovelyblack'>@Lovelyblack</a>")),
|
|
|
|
QStringLiteral("<hr/>"),
|
2020-09-28 20:10:33 +08:00
|
|
|
tr("Built with Qt %1 (%2)").arg(QT_VERSION_STR, QSysInfo::buildCpuArchitecture()),
|
|
|
|
QStringLiteral("<br/><a href='%1'>%2</a>").arg("https://github.com/BLumia/pineapple-pictures", tr("Source code")),
|
2020-10-05 20:43:30 +08:00
|
|
|
QStringLiteral("</center>")
|
2020-09-28 20:10:33 +08:00
|
|
|
};
|
|
|
|
|
2020-10-05 20:43:30 +08:00
|
|
|
QStringList specialThanksStr {
|
|
|
|
QStringLiteral("<h1 align='center'>%1</h1><a href='%2'>%3</a><p>%4</p>").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.")
|
|
|
|
),
|
|
|
|
#if 0
|
|
|
|
QStringLiteral("<h1 align='center'>%1</h1><p>%2</p>").arg(
|
|
|
|
tr("Translators"),
|
|
|
|
tr("I would like to thank the following people who volunteered to translate this application.")
|
|
|
|
),
|
|
|
|
#endif
|
|
|
|
};
|
2020-09-28 20:10:33 +08:00
|
|
|
|
|
|
|
QStringList licenseStr {
|
|
|
|
QStringLiteral("<h1 align='center'><b>%1</b></h1>").arg(tr("Your Rights")),
|
2020-10-05 20:43:30 +08:00
|
|
|
QStringLiteral("<p>%1</p><p>%2</p><ul><li>%3</li><li>%4</li><li>%5</li><li>%6</li></ul>").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("<i>%1</i>")),
|
|
|
|
QStringLiteral("<p>%1</p>").arg(tr("The MIT license guarantees you this freedom. Nobody is ever permitted to take it away.")),
|
2020-09-28 20:10:33 +08:00
|
|
|
QStringLiteral("<hr/><pre>%2</pre>")
|
|
|
|
};
|
|
|
|
|
|
|
|
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.
|
|
|
|
)"));
|
|
|
|
|
2020-10-05 20:43:30 +08:00
|
|
|
QStringList thirdPartyLibsStr {
|
|
|
|
QStringLiteral("<h1 align='center'><b>%1</b></h1>").arg(tr("Third-party Libraries used by %1")),
|
|
|
|
tr("%1 is built on the following free software libraries:"),
|
|
|
|
QStringLiteral("<ul>"),
|
|
|
|
QStringLiteral("<li><a href='%1'>%2</a>: %3</li>").arg("https://www.qt.io/", "Qt", "GPLv2 + GPLv3 + LGPLv2.1 + LGPLv3"),
|
|
|
|
QStringLiteral("</ul>")
|
|
|
|
};
|
|
|
|
|
2020-09-28 20:10:33 +08:00
|
|
|
m_helpTextEdit->setText(helpStr.join('\n'));
|
|
|
|
|
|
|
|
m_aboutTextEdit->setText(aboutStr.join('\n'));
|
|
|
|
m_aboutTextEdit->setOpenExternalLinks(true);
|
|
|
|
|
2020-10-05 20:43:30 +08:00
|
|
|
m_specialThanksTextEdit->setText(specialThanksStr.join('\n'));
|
|
|
|
m_specialThanksTextEdit->setOpenExternalLinks(true);
|
|
|
|
|
2020-09-28 20:10:33 +08:00
|
|
|
m_licenseTextEdit->setText(licenseStr.join('\n').arg(qApp->applicationDisplayName(), mitLicense));
|
|
|
|
|
2020-10-09 22:09:09 +08:00
|
|
|
m_3rdPartyLibsTextEdit->setText(thirdPartyLibsStr.join('\n').arg(QStringLiteral("<i>%1</i>")).arg(qApp->applicationDisplayName()));
|
2020-10-05 20:43:30 +08:00
|
|
|
m_3rdPartyLibsTextEdit->setOpenExternalLinks(true);
|
|
|
|
|
2020-09-28 20:10:33 +08:00
|
|
|
m_tabWidget->addTab(m_helpTextEdit, tr("&Help"));
|
|
|
|
m_tabWidget->addTab(m_aboutTextEdit, tr("&About"));
|
2020-10-05 20:43:30 +08:00
|
|
|
m_tabWidget->addTab(m_specialThanksTextEdit, tr("&Special Thanks"));
|
2020-09-28 20:10:33 +08:00
|
|
|
m_tabWidget->addTab(m_licenseTextEdit, tr("&License"));
|
2020-10-05 20:43:30 +08:00
|
|
|
m_tabWidget->addTab(m_3rdPartyLibsTextEdit, tr("&Third-party Libraries"));
|
2020-09-28 20:10:33 +08:00
|
|
|
|
|
|
|
m_buttonBox->setStandardButtons(QDialogButtonBox::Close);
|
|
|
|
connect(m_buttonBox, QOverload<QAbstractButton *>::of(&QDialogButtonBox::clicked), this, [this](){
|
|
|
|
this->close();
|
|
|
|
});
|
|
|
|
|
2020-10-08 22:24:54 +08:00
|
|
|
setLayout(new QVBoxLayout);
|
2020-09-28 20:10:33 +08:00
|
|
|
|
2020-10-08 22:24:54 +08:00
|
|
|
layout()->addWidget(m_tabWidget);
|
|
|
|
layout()->addWidget(m_buttonBox);
|
2020-09-28 20:10:33 +08:00
|
|
|
|
2020-10-08 22:24:54 +08:00
|
|
|
setMinimumSize(361, 161); // not sure why it complain "Unable to set geometry"
|
2020-09-28 20:10:33 +08:00
|
|
|
setWindowFlag(Qt::WindowContextHelpButtonHint, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
AboutDialog::~AboutDialog()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
2020-10-08 22:24:54 +08:00
|
|
|
|
|
|
|
QSize AboutDialog::sizeHint() const
|
|
|
|
{
|
|
|
|
return QSize(520, 350);
|
|
|
|
}
|