#include "about.h" #include "ui_about.h" #include "../version.h" #include #include #include #include SubsurfaceAbout *SubsurfaceAbout::instance() { static SubsurfaceAbout *self = new SubsurfaceAbout(); self->setAttribute(Qt::WA_QuitOnClose, false); return self; } SubsurfaceAbout::SubsurfaceAbout(QWidget* parent, Qt::WindowFlags f) : ui( new Ui::SubsurfaceAbout()) { ui->setupUi(this); ui->aboutLabel->setText(tr("" \ "Subsurface " VERSION_STRING "

" \ "Multi-platform divelog software in C
" \ "Linus Torvalds, Dirk Hohndel, and others, 2011, 2012, 2013")); licenseButton = new QPushButton(tr("&License")); websiteButton = new QPushButton(tr("&Website")); ui->buttonBox->addButton(licenseButton, QDialogButtonBox::ActionRole); ui->buttonBox->addButton(websiteButton, QDialogButtonBox::ActionRole); connect(licenseButton, SIGNAL(clicked(bool)), this, SLOT(licenseClicked())); connect(websiteButton, SIGNAL(clicked(bool)), this, SLOT(websiteClicked())); } void SubsurfaceAbout::licenseClicked(void) { QDesktopServices::openUrl(QUrl("http://www.gnu.org/licenses/gpl-2.0.txt")); } void SubsurfaceAbout::websiteClicked(void) { QDesktopServices::openUrl(QUrl("http://subsurface.hohndel.org")); }