2022-12-04 10:17:02 -05:00
|
|
|
#include "about.h"
|
|
|
|
#include "revision_utils.hpp"
|
|
|
|
#include "ui_about.h"
|
|
|
|
|
|
|
|
CAboutDlg::CAboutDlg(QWidget *parent) :
|
|
|
|
QDialog(parent),
|
|
|
|
ui(new Ui::CAboutDlg)
|
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
2023-01-25 09:07:56 -05:00
|
|
|
ui->labelTxt->setText("<html><h2>" + QString {"QMAP v"
|
2022-12-04 10:17:02 -05:00
|
|
|
+ QCoreApplication::applicationVersion ()
|
|
|
|
+ " " + revision ()}.simplified () + "</h2><br />"
|
2023-02-23 12:03:38 -05:00
|
|
|
"QMAP is a wideband receiver for the Q65 protocol, intnded<br />"
|
|
|
|
"primarily for amateur radio EME communication. It works <br />"
|
|
|
|
"in close cooperation with WSJT-X, versions 2.7 and later. <br /><br />"
|
2022-12-10 14:15:29 -05:00
|
|
|
"Copyright 2001-2023 by Joe Taylor, K1JT. Additional <br />"
|
2022-12-04 10:17:02 -05:00
|
|
|
"acknowledgments are contained in the source code.");
|
|
|
|
}
|
|
|
|
|
|
|
|
CAboutDlg::~CAboutDlg()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|