File: about.cpp

package info (click to toggle)
wsjtx 2.7.0%2Brepack-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 70,440 kB
  • sloc: cpp: 75,379; f90: 46,460; python: 27,241; ansic: 13,367; fortran: 2,382; makefile: 197; sh: 133
file content (23 lines) | stat: -rwxr-xr-x 746 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include "about.h"
#include "revision_utils.hpp"
#include "ui_about.h"

CAboutDlg::CAboutDlg(QWidget *parent) :
  QDialog(parent),
  ui(new Ui::CAboutDlg)
{
  ui->setupUi(this);
  ui->labelTxt->setText("<html><h2>" + QString {"QMAP v"
                + QCoreApplication::applicationVersion ()
                + " " + revision ()}.simplified () + "</h2><br />"
    "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 />"
    "Copyright 2001-2024 by Joe Taylor, K1JT.   Additional <br />"
    "acknowledgments are contained in the source code.");
}

CAboutDlg::~CAboutDlg()
{
  delete ui;
}