2023-11-19 13:31:45 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2012 maintech GmbH, Otto-Hahn-Str. 15, 97204 Hoechberg, Germany //
|
|
|
|
// written by Christian Daniel //
|
|
|
|
// Copyright (C) 2017-2019 Edouard Griffiths, F4EXB <f4exb06@gmail.com> //
|
|
|
|
// Copyright (C) 2022 AsciiWolf <mail@asciiwolf.com> //
|
|
|
|
// //
|
|
|
|
// This program 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 as version 3 of the License, or //
|
|
|
|
// (at your option) any later version. //
|
|
|
|
// //
|
|
|
|
// This program 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 V3 for more details. //
|
|
|
|
// //
|
|
|
|
// You should have received a copy of the GNU General Public License //
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////////
|
2014-05-18 16:52:39 +01:00
|
|
|
#include "gui/aboutdialog.h"
|
|
|
|
#include "ui_aboutdialog.h"
|
2018-01-22 23:29:09 +01:00
|
|
|
#include "dsp/dsptypes.h"
|
2019-01-17 11:17:28 +01:00
|
|
|
#include "settings/mainsettings.h"
|
2014-05-18 16:52:39 +01:00
|
|
|
|
2019-01-17 11:17:28 +01:00
|
|
|
AboutDialog::AboutDialog(const QString& apiHost, int apiPort, const MainSettings& mainSettings, QWidget* parent) :
|
2014-05-18 16:52:39 +01:00
|
|
|
QDialog(parent),
|
|
|
|
ui(new Ui::AboutDialog)
|
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
2022-09-03 14:46:28 +02:00
|
|
|
ui->version->setText(QString("Version %1 - Copyright (C) 2015-2022 Edouard Griffiths, F4EXB.").arg(qApp->applicationVersion()));
|
2018-01-07 03:36:47 +01:00
|
|
|
ui->build->setText(QString("Build info: Qt %1 %2 bits").arg(QT_VERSION_STR).arg(QT_POINTER_SIZE*8));
|
2018-01-22 23:29:09 +01:00
|
|
|
ui->dspBits->setText(QString("DSP Rx %1 bits Tx %2 bits").arg(SDR_RX_SAMP_SZ).arg(SDR_TX_SAMP_SZ));
|
|
|
|
ui->pid->setText(QString("PID: %1").arg(qApp->applicationPid()));
|
2018-01-24 18:17:13 +01:00
|
|
|
QString apiUrl = QString("http://%1:%2/").arg(apiHost).arg(apiPort);
|
2024-07-20 19:20:17 +02:00
|
|
|
ui->restApiUrl->setText(QString("REST API server and documentation: <a href=\"%1\">%2</a>").arg(apiUrl).arg(apiUrl));
|
2018-01-22 23:29:09 +01:00
|
|
|
ui->restApiUrl->setOpenExternalLinks(true);
|
2019-01-17 11:17:28 +01:00
|
|
|
ui->settingsFile->setText(QString("Settings: %1").arg(mainSettings.getFileLocation()));
|
2014-05-18 16:52:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
AboutDialog::~AboutDialog()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|