2017-04-27 18:26:05 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2016-04-05 05:02:03 +00:00
|
|
|
#include "desktop-widgets/about.h"
|
|
|
|
#include "core/version.h"
|
2014-02-08 07:50:39 +00:00
|
|
|
#include <QDesktopServices>
|
|
|
|
#include <QUrl>
|
2014-04-25 15:54:01 +00:00
|
|
|
#include <QShortcut>
|
2013-06-24 11:36:38 +00:00
|
|
|
|
2020-10-25 21:27:39 +00:00
|
|
|
SubsurfaceAbout::SubsurfaceAbout(QWidget *parent) : QDialog(parent, QFlag(0))
|
2013-06-24 11:36:38 +00:00
|
|
|
{
|
2013-10-03 18:54:25 +00:00
|
|
|
ui.setupUi(this);
|
2014-02-08 07:50:39 +00:00
|
|
|
|
|
|
|
setWindowModality(Qt::ApplicationModal);
|
2015-02-15 18:25:18 +00:00
|
|
|
QString versionString(subsurface_git_version());
|
2014-02-08 07:50:39 +00:00
|
|
|
|
2014-02-28 04:09:57 +00:00
|
|
|
ui.aboutLabel->setText(tr("<span style='font-size: 18pt; font-weight: bold;'>"
|
|
|
|
"Subsurface %1 </span><br><br>"
|
|
|
|
"Multi-platform divelog software<br>"
|
|
|
|
"<span style='font-size: 8pt'>"
|
2022-01-17 21:17:28 +00:00
|
|
|
"Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2022"
|
2015-01-24 02:52:26 +00:00
|
|
|
"</span>").arg(versionString));
|
2014-04-25 15:54:01 +00:00
|
|
|
|
2022-02-08 19:24:53 +00:00
|
|
|
QShortcut *close = new QShortcut(QKeySequence(Qt::CTRL | Qt::Key_W), this);
|
2014-04-25 15:54:01 +00:00
|
|
|
connect(close, SIGNAL(activated()), this, SLOT(close()));
|
2022-02-08 19:24:53 +00:00
|
|
|
QShortcut *quit = new QShortcut(QKeySequence(Qt::CTRL | Qt::Key_Q), this);
|
2014-04-25 17:21:12 +00:00
|
|
|
connect(quit, SIGNAL(activated()), parent, SLOT(close()));
|
2013-06-24 11:36:38 +00:00
|
|
|
}
|
|
|
|
|
2014-02-08 07:50:39 +00:00
|
|
|
void SubsurfaceAbout::on_licenseButton_clicked()
|
2013-06-24 11:36:38 +00:00
|
|
|
{
|
|
|
|
QDesktopServices::openUrl(QUrl("http://www.gnu.org/licenses/gpl-2.0.txt"));
|
|
|
|
}
|
|
|
|
|
2014-02-08 07:50:39 +00:00
|
|
|
void SubsurfaceAbout::on_websiteButton_clicked()
|
2013-06-24 11:36:38 +00:00
|
|
|
{
|
2014-11-18 13:12:40 +00:00
|
|
|
QDesktopServices::openUrl(QUrl("http://subsurface-divelog.org"));
|
2013-06-24 11:36:38 +00:00
|
|
|
}
|
2017-02-19 00:22:09 +00:00
|
|
|
|
|
|
|
void SubsurfaceAbout::on_creditButton_clicked()
|
|
|
|
{
|
|
|
|
QDesktopServices::openUrl(QUrl("http://subsurface-divelog.org/misc/credits"));
|
|
|
|
}
|