mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-03-25 13:39:27 -04:00
1218 lines
36 KiB
C++
1218 lines
36 KiB
C++
//------------------------------------------------------------------ MainWindow
|
|
#include "mainwindow.h"
|
|
#include <fftw3.h>
|
|
#include <QDir>
|
|
#include <QSettings>
|
|
#include <QTimer>
|
|
#include <QToolTip>
|
|
#include "revision_utils.hpp"
|
|
#include "qt_helpers.hpp"
|
|
#include "SettingsGroup.hpp"
|
|
#include "widgets/MessageBox.hpp"
|
|
#include "ui_mainwindow.h"
|
|
#include "devsetup.h"
|
|
#include "plotter.h"
|
|
#include "about.h"
|
|
#include "astro.h"
|
|
#include "widegraph.h"
|
|
#include "sleep.h"
|
|
|
|
#define NFFT 32768
|
|
|
|
qint16 id[2*60*96000];
|
|
|
|
QSharedMemory mem_q65w("mem_q65w"); //Memory segment to be shared (optionally) with WSJT-X
|
|
int* ipc_wsjtx;
|
|
|
|
extern const int RxDataFrequency = 96000;
|
|
|
|
//-------------------------------------------------- MainWindow constructor
|
|
MainWindow::MainWindow(QWidget *parent) :
|
|
QMainWindow(parent),
|
|
ui(new Ui::MainWindow),
|
|
m_appDir {QApplication::applicationDirPath ()},
|
|
m_settings_filename {m_appDir + "/q65w.ini"},
|
|
m_astro_window {new Astro {m_settings_filename}},
|
|
m_wide_graph_window {new WideGraph {m_settings_filename}},
|
|
m_gui_timer {new QTimer {this}}
|
|
{
|
|
ui->setupUi(this);
|
|
// ui->decodedTextBrowser->clear();
|
|
ui->labUTC->setStyleSheet( \
|
|
"QLabel { background-color : black; color : yellow; }");
|
|
ui->labTol1->setStyleSheet( \
|
|
"QLabel { background-color : white; color : black; }");
|
|
ui->labTol1->setFrameStyle(QFrame::Panel | QFrame::Sunken);
|
|
ui->dxStationGroupBox->setStyleSheet("QFrame{border: 5px groove red}");
|
|
|
|
QActionGroup* paletteGroup = new QActionGroup(this);
|
|
ui->actionCuteSDR->setActionGroup(paletteGroup);
|
|
ui->actionLinrad->setActionGroup(paletteGroup);
|
|
ui->actionAFMHot->setActionGroup(paletteGroup);
|
|
ui->actionBlue->setActionGroup(paletteGroup);
|
|
|
|
QActionGroup* modeGroup2 = new QActionGroup(this);
|
|
ui->actionQ65A->setActionGroup(modeGroup2);
|
|
ui->actionQ65B->setActionGroup(modeGroup2);
|
|
ui->actionQ65C->setActionGroup(modeGroup2);
|
|
ui->actionQ65D->setActionGroup(modeGroup2);
|
|
ui->actionQ65E->setActionGroup(modeGroup2);
|
|
|
|
QActionGroup* saveGroup = new QActionGroup(this);
|
|
ui->actionSave_all->setActionGroup(saveGroup);
|
|
ui->actionNone->setActionGroup(saveGroup);
|
|
|
|
QActionGroup* DepthGroup = new QActionGroup(this);
|
|
ui->actionNo_Deep_Search->setActionGroup(DepthGroup);
|
|
ui->actionNormal_Deep_Search->setActionGroup(DepthGroup);
|
|
ui->actionAggressive_Deep_Search->setActionGroup(DepthGroup);
|
|
|
|
setWindowTitle (program_title ());
|
|
|
|
connect(&soundInThread, SIGNAL(readyForFFT(int)), this, SLOT(dataSink(int)));
|
|
connect(&soundInThread, SIGNAL(error(QString)), this, SLOT(showSoundInError(QString)));
|
|
connect(&soundInThread, SIGNAL(status(QString)), this, SLOT(showStatusMessage(QString)));
|
|
createStatusBar();
|
|
connect(m_gui_timer, &QTimer::timeout, this, &MainWindow::guiUpdate);
|
|
|
|
m_waterfallAvg = 1;
|
|
m_network = true;
|
|
m_restart=false;
|
|
m_myCall="K1JT";
|
|
m_myGrid="FN20qi";
|
|
m_saveDir="";
|
|
m_azelDir="";
|
|
m_loopall=false;
|
|
m_startAnother=false;
|
|
m_saveAll=false;
|
|
m_onlyEME=false;
|
|
m_sec0=-1;
|
|
m_hsym0=-1;
|
|
m_palette="CuteSDR";
|
|
m_nutc0=9999;
|
|
m_kb8rq=false;
|
|
m_NB=false;
|
|
m_mode="Q65";
|
|
m_fs96000=true;
|
|
m_udpPort=50004;
|
|
m_nsave=0;
|
|
m_modeQ65=0;
|
|
m_TRperiod=60;
|
|
|
|
xSignalMeter = new SignalMeter(ui->xMeterFrame);
|
|
xSignalMeter->resize(50, 160);
|
|
|
|
//Attach or create a memory segment to be shared with WSJT-X.
|
|
int memSize=4096;
|
|
if(!mem_q65w.attach()) {
|
|
if(!mem_q65w.create(memSize)) {
|
|
msgBox("Unable to create shared memory segment mem_q65w.");
|
|
}
|
|
}
|
|
ipc_wsjtx = (int*)mem_q65w.data();
|
|
mem_q65w.lock();
|
|
memset(ipc_wsjtx,0,memSize); //Zero all of shared memory
|
|
mem_q65w.unlock();
|
|
|
|
fftwf_import_wisdom_from_filename (QDir {m_appDir}.absoluteFilePath ("q65w_wisdom.dat").toLocal8Bit ());
|
|
|
|
readSettings(); //Restore user's setup params
|
|
|
|
m_pbdecoding_style1="QPushButton{background-color: cyan; \
|
|
border-style: outset; border-width: 1px; border-radius: 5px; \
|
|
border-color: black; min-width: 5em; padding: 3px;}";
|
|
m_pbmonitor_style="QPushButton{background-color: #00ff00; \
|
|
border-style: outset; border-width: 1px; border-radius: 5px; \
|
|
border-color: black; min-width: 5em; padding: 3px;}";
|
|
m_pbAutoOn_style="QPushButton{background-color: red; \
|
|
border-style: outset; border-width: 1px; border-radius: 5px; \
|
|
border-color: black; min-width: 5em; padding: 3px;}";
|
|
|
|
on_actionAstro_Data_triggered(); //Create the other windows
|
|
on_actionWide_Waterfall_triggered();
|
|
if (m_astro_window) m_astro_window->setFontSize (m_astroFont);
|
|
|
|
if(m_modeQ65==1) on_actionQ65A_triggered();
|
|
if(m_modeQ65==2) on_actionQ65B_triggered();
|
|
if(m_modeQ65==3) on_actionQ65C_triggered();
|
|
if(m_modeQ65==4) on_actionQ65D_triggered();
|
|
if(m_modeQ65==5) on_actionQ65E_triggered();
|
|
|
|
future1 = new QFuture<void>;
|
|
watcher1 = new QFutureWatcher<void>;
|
|
connect(watcher1, SIGNAL(finished()),this,SLOT(diskDat()));
|
|
|
|
future2 = new QFuture<void>;
|
|
watcher2 = new QFutureWatcher<void>;
|
|
connect(watcher2, SIGNAL(finished()),this,SLOT(diskWriteFinished()));
|
|
|
|
connect(&watcher3, SIGNAL(finished()),this,SLOT(decoderFinished()));
|
|
|
|
// Assign input device and start input thread
|
|
soundInThread.setRate(96000.0);
|
|
soundInThread.setBufSize(10*7056);
|
|
soundInThread.setNetwork(m_network);
|
|
soundInThread.setPort(m_udpPort);
|
|
soundInThread.setPeriod(m_TRperiod);
|
|
soundInThread.start(QThread::HighestPriority);
|
|
|
|
m_monitoring=true; // Start with Monitoring ON
|
|
soundInThread.setMonitoring(m_monitoring);
|
|
m_diskData=false;
|
|
m_tol=500;
|
|
m_wide_graph_window->setTol(m_tol);
|
|
m_wide_graph_window->setFcal(m_fCal);
|
|
m_wide_graph_window->setFsample(96000);
|
|
|
|
// Create "m_worked", a dictionary of all calls in wsjt.log
|
|
QFile f("wsjt.log");
|
|
f.open(QIODevice::ReadOnly);
|
|
if(f.isOpen()) {
|
|
QTextStream in(&f);
|
|
QString line,t,callsign;
|
|
for(int i=0; i<99999; i++) {
|
|
line=in.readLine();
|
|
if(line.length()<=0) break;
|
|
t=line.mid(18,12);
|
|
callsign=t.mid(0,t.indexOf(","));
|
|
m_worked[callsign]=true;
|
|
}
|
|
f.close();
|
|
}
|
|
|
|
if(ui->actionLinrad->isChecked()) on_actionLinrad_triggered();
|
|
if(ui->actionCuteSDR->isChecked()) on_actionCuteSDR_triggered();
|
|
if(ui->actionAFMHot->isChecked()) on_actionAFMHot_triggered();
|
|
if(ui->actionBlue->isChecked()) on_actionBlue_triggered();
|
|
|
|
connect (m_wide_graph_window.get (), &WideGraph::freezeDecode2, this, &MainWindow::freezeDecode);
|
|
connect (m_wide_graph_window.get (), &WideGraph::f11f12, this, &MainWindow::bumpDF);
|
|
|
|
// only start the guiUpdate timer after this constructor has finished
|
|
QTimer::singleShot (0, [=] {
|
|
m_gui_timer->start(100); //Don't change the 100 ms!
|
|
});
|
|
}
|
|
|
|
//--------------------------------------------------- MainWindow destructor
|
|
MainWindow::~MainWindow()
|
|
{
|
|
writeSettings();
|
|
int itimer=1;
|
|
q65c_(&itimer);
|
|
|
|
if (soundInThread.isRunning()) {
|
|
soundInThread.quit();
|
|
soundInThread.wait(3000);
|
|
}
|
|
fftwf_export_wisdom_to_filename (QDir {m_appDir}.absoluteFilePath ("q65w_wisdom.dat").toLocal8Bit ());
|
|
delete ui;
|
|
}
|
|
|
|
//-------------------------------------------------------- writeSettings()
|
|
void MainWindow::writeSettings()
|
|
{
|
|
QSettings settings(m_settings_filename, QSettings::IniFormat);
|
|
{
|
|
SettingsGroup g {&settings, "MainWindow"};
|
|
settings.setValue("geometry", saveGeometry());
|
|
settings.setValue("MRUdir", m_path);
|
|
settings.setValue("DXcall",ui->dxCallEntry->text());
|
|
settings.setValue("DXgrid",ui->dxGridEntry->text());
|
|
}
|
|
|
|
SettingsGroup g {&settings, "Common"};
|
|
settings.setValue("MyCall",m_myCall);
|
|
settings.setValue("MyGrid",m_myGrid);
|
|
settings.setValue("IDint",m_idInt);
|
|
settings.setValue("AstroFont",m_astroFont);
|
|
settings.setValue("SaveDir",m_saveDir);
|
|
settings.setValue("AzElDir",m_azelDir);
|
|
settings.setValue("Timeout",m_timeout);
|
|
settings.setValue("dPhi",m_dPhi);
|
|
settings.setValue("Fcal",m_fCal);
|
|
settings.setValue("Fadd",m_fAdd);
|
|
settings.setValue("NetworkInput", m_network);
|
|
settings.setValue("FSam96000", m_fs96000);
|
|
settings.setValue("paInDevice",m_paInDevice);
|
|
settings.setValue("Scale_dB",m_dB);
|
|
settings.setValue("UDPport",m_udpPort);
|
|
settings.setValue("PaletteCuteSDR",ui->actionCuteSDR->isChecked());
|
|
settings.setValue("PaletteLinrad",ui->actionLinrad->isChecked());
|
|
settings.setValue("PaletteAFMHot",ui->actionAFMHot->isChecked());
|
|
settings.setValue("PaletteBlue",ui->actionBlue->isChecked());
|
|
settings.setValue("Mode",m_mode);
|
|
settings.setValue("nModeQ65",m_modeQ65);
|
|
settings.setValue("SaveNone",ui->actionNone->isChecked());
|
|
settings.setValue("SaveAll",ui->actionSave_all->isChecked());
|
|
settings.setValue("NDepth",m_ndepth);
|
|
settings.setValue("NEME",m_onlyEME);
|
|
settings.setValue("KB8RQ",m_kb8rq);
|
|
settings.setValue("NB",m_NB);
|
|
settings.setValue("NBslider",m_NBslider);
|
|
settings.setValue("GainX",(double)m_gainx);
|
|
settings.setValue("GainY",(double)m_gainy);
|
|
settings.setValue("PhaseX",(double)m_phasex);
|
|
settings.setValue("PhaseY",(double)m_phasey);
|
|
settings.setValue("MaxDrift",ui->sbMaxDrift->value());
|
|
}
|
|
|
|
//---------------------------------------------------------- readSettings()
|
|
void MainWindow::readSettings()
|
|
{
|
|
QSettings settings(m_settings_filename, QSettings::IniFormat);
|
|
{
|
|
SettingsGroup g {&settings, "MainWindow"};
|
|
restoreGeometry(settings.value("geometry").toByteArray());
|
|
ui->dxCallEntry->setText(settings.value("DXcall","").toString());
|
|
ui->dxGridEntry->setText(settings.value("DXgrid","").toString());
|
|
m_path = settings.value("MRUdir", m_appDir + "/save").toString();
|
|
}
|
|
|
|
SettingsGroup g {&settings, "Common"};
|
|
m_myCall=settings.value("MyCall","").toString();
|
|
m_myGrid=settings.value("MyGrid","").toString();
|
|
m_idInt=settings.value("IDint",0).toInt();
|
|
m_astroFont=settings.value("AstroFont",20).toInt();
|
|
m_saveDir=settings.value("SaveDir",m_appDir + "/save").toString();
|
|
m_azelDir=settings.value("AzElDir",m_appDir).toString();
|
|
m_timeout=settings.value("Timeout",20).toInt();
|
|
m_dPhi=settings.value("dPhi",0).toInt();
|
|
m_fCal=settings.value("Fcal",0).toInt();
|
|
m_fAdd=settings.value("FAdd",0).toDouble();
|
|
soundInThread.setFadd(m_fAdd);
|
|
m_network = settings.value("NetworkInput",true).toBool();
|
|
m_fs96000 = settings.value("FSam96000",true).toBool();
|
|
m_dB = settings.value("Scale_dB",0).toInt();
|
|
m_udpPort = settings.value("UDPport",50004).toInt();
|
|
soundInThread.setScale(m_dB);
|
|
soundInThread.setPort(m_udpPort);
|
|
ui->actionCuteSDR->setChecked(settings.value(
|
|
"PaletteCuteSDR",true).toBool());
|
|
ui->actionLinrad->setChecked(settings.value(
|
|
"PaletteLinrad",false).toBool());
|
|
|
|
m_modeQ65=settings.value("nModeQ65",2).toInt();
|
|
if(m_modeQ65==1) ui->actionQ65A->setChecked(true);
|
|
if(m_modeQ65==2) ui->actionQ65B->setChecked(true);
|
|
if(m_modeQ65==3) ui->actionQ65C->setChecked(true);
|
|
if(m_modeQ65==4) ui->actionQ65D->setChecked(true);
|
|
if(m_modeQ65==5) ui->actionQ65E->setChecked(true);
|
|
|
|
ui->actionNone->setChecked(settings.value("SaveNone",true).toBool());
|
|
ui->actionSave_all->setChecked(settings.value("SaveAll",false).toBool());
|
|
m_saveAll=ui->actionSave_all->isChecked();
|
|
m_ndepth=settings.value("NDepth",2).toInt();
|
|
m_onlyEME=settings.value("NEME",false).toBool();
|
|
ui->actionOnly_EME_calls->setChecked(m_onlyEME);
|
|
m_kb8rq=settings.value("KB8RQ",false).toBool();
|
|
m_NB=settings.value("NB",false).toBool();
|
|
ui->NBcheckBox->setChecked(m_NB);
|
|
ui->sbMaxDrift->setValue(settings.value("MaxDrift",0).toInt());
|
|
m_NBslider=settings.value("NBslider",40).toInt();
|
|
ui->NBslider->setValue(m_NBslider);
|
|
m_gainx=settings.value("GainX",1.0).toFloat();
|
|
m_gainy=settings.value("GainY",1.0).toFloat();
|
|
m_phasex=settings.value("PhaseX",0.0).toFloat();
|
|
m_phasey=settings.value("PhaseY",0.0).toFloat();
|
|
|
|
if(!ui->actionLinrad->isChecked() && !ui->actionCuteSDR->isChecked() &&
|
|
!ui->actionAFMHot->isChecked() && !ui->actionBlue->isChecked()) {
|
|
on_actionLinrad_triggered();
|
|
ui->actionLinrad->setChecked(true);
|
|
}
|
|
if(m_ndepth==0) ui->actionNo_Deep_Search->setChecked(true);
|
|
if(m_ndepth==1) ui->actionNormal_Deep_Search->setChecked(true);
|
|
if(m_ndepth==2) ui->actionAggressive_Deep_Search->setChecked(true);
|
|
}
|
|
|
|
//-------------------------------------------------------------- dataSink()
|
|
void MainWindow::dataSink(int k)
|
|
{
|
|
static float s[NFFT],splot[NFFT];
|
|
static int n=0;
|
|
static int ihsym=0;
|
|
static int nzap=0;
|
|
static int ntrz=0;
|
|
static int nkhz;
|
|
static int nfsample=96000;
|
|
static int nsec0=0;
|
|
static int nsum=0;
|
|
static int ndiskdat;
|
|
static int nb;
|
|
static float px=0.0;
|
|
static uchar lstrong[1024];
|
|
static float slimit;
|
|
static double xsum=0.0;
|
|
|
|
if(m_diskData) {
|
|
ndiskdat=1;
|
|
datcom_.ndiskdat=1;
|
|
} else {
|
|
ndiskdat=0;
|
|
datcom_.ndiskdat=0;
|
|
}
|
|
// Get x and y power, polarized spectrum, nkhz, and ihsym
|
|
nb=0;
|
|
if(m_NB) nb=1;
|
|
nfsample=96000;
|
|
if(!m_fs96000) nfsample=95238;
|
|
symspec_(&k, &ndiskdat, &nb, &m_NBslider, &nfsample,
|
|
&px, s, &nkhz, &ihsym, &nzap, &slimit, lstrong);
|
|
|
|
int nsec=QDateTime::currentSecsSinceEpoch();
|
|
if(nsec==nsec0) {
|
|
xsum+=pow(10.0,0.1*px);
|
|
nsum+=1;
|
|
} else {
|
|
m_xavg=0.0;
|
|
if(nsum>0) m_xavg=xsum/nsum;
|
|
xsum=pow(10.0,0.1*px);
|
|
nsum=1;
|
|
}
|
|
nsec0=nsec;
|
|
|
|
QString t;
|
|
m_pctZap=nzap/178.3;
|
|
|
|
lab4->setText (
|
|
QString {" Rx: %1 %2 % "}
|
|
.arg (px, 5, 'f', 1)
|
|
.arg (m_pctZap, 5, 'f', 1)
|
|
);
|
|
|
|
xSignalMeter->setValue(px); // Update the signal meters
|
|
//Suppress scrolling if WSJT-X is transmitting
|
|
if((m_monitoring and ipc_wsjtx[4] != 1) or m_diskData) {
|
|
m_wide_graph_window->dataSink2(s,nkhz,ihsym,m_diskData,lstrong);
|
|
}
|
|
|
|
//Average over specified number of spectra
|
|
if (n==0) {
|
|
for (int i=0; i<NFFT; i++)
|
|
splot[i]=s[i];
|
|
} else {
|
|
for (int i=0; i<NFFT; i++)
|
|
splot[i] += s[i];
|
|
}
|
|
n++;
|
|
|
|
if (n>=m_waterfallAvg) {
|
|
for (int i=0; i<NFFT; i++) {
|
|
splot[i] /= n; //Normalize the average
|
|
}
|
|
|
|
// Time according to this computer
|
|
qint64 ms = QDateTime::currentMSecsSinceEpoch() % 86400000;
|
|
int ntr = (ms/1000) % m_TRperiod;
|
|
if((m_diskData && ihsym <= m_waterfallAvg) || (!m_diskData && ntr<ntrz)) {
|
|
for (int i=0; i<NFFT; i++) {
|
|
splot[i] = 1.e30;
|
|
}
|
|
}
|
|
ntrz=ntr;
|
|
n=0;
|
|
}
|
|
|
|
if(ihsym==302) { //Decode at t=56 s (for Q65 and data from disk)
|
|
m_RxState=2;
|
|
datcom_.newdat=1;
|
|
datcom_.nagain=0;
|
|
datcom_.nhsym=ihsym;
|
|
QDateTime t = QDateTime::currentDateTimeUtc();
|
|
m_dateTime=t.toString("yyyy-MMM-dd hh:mm");
|
|
decode(); //Start the decoder
|
|
if(m_saveAll and !m_diskData) {
|
|
QString fname=m_saveDir + "/" + t.date().toString("yyMMdd") + "_" +
|
|
t.time().toString("hhmm");
|
|
fname += ".iq";
|
|
*future2 = QtConcurrent::run(savetf2, fname, false);
|
|
watcher2->setFuture(*future2);
|
|
}
|
|
}
|
|
|
|
soundInThread.m_dataSinkBusy=false;
|
|
}
|
|
|
|
void MainWindow::showSoundInError(const QString& errorMsg)
|
|
{QMessageBox::critical(this, tr("Error in SoundIn"), errorMsg);}
|
|
|
|
void MainWindow::showStatusMessage(const QString& statusMsg)
|
|
{statusBar()->showMessage(statusMsg);}
|
|
|
|
void MainWindow::on_actionSettings_triggered()
|
|
{
|
|
DevSetup dlg(this);
|
|
dlg.m_myCall=m_myCall;
|
|
dlg.m_myGrid=m_myGrid;
|
|
dlg.m_idInt=m_idInt;
|
|
dlg.m_astroFont=m_astroFont;
|
|
dlg.m_saveDir=m_saveDir;
|
|
dlg.m_azelDir=m_azelDir;
|
|
dlg.m_timeout=m_timeout;
|
|
dlg.m_dPhi=m_dPhi;
|
|
dlg.m_fCal=m_fCal;
|
|
dlg.m_fAdd=m_fAdd;
|
|
dlg.m_network=m_network;
|
|
dlg.m_fs96000=m_fs96000;
|
|
dlg.m_udpPort=m_udpPort;
|
|
dlg.m_dB=m_dB;
|
|
dlg.initDlg();
|
|
if(dlg.exec() == QDialog::Accepted) {
|
|
m_myCall=dlg.m_myCall;
|
|
m_myGrid=dlg.m_myGrid;
|
|
m_idInt=dlg.m_idInt;
|
|
m_astroFont=dlg.m_astroFont;
|
|
if(m_astro_window && m_astro_window->isVisible()) m_astro_window->setFontSize(m_astroFont);
|
|
ui->actionFind_Delta_Phi->setEnabled(false);
|
|
m_saveDir=dlg.m_saveDir;
|
|
m_azelDir=dlg.m_azelDir;
|
|
m_timeout=dlg.m_timeout;
|
|
m_dPhi=dlg.m_dPhi;
|
|
m_fCal=dlg.m_fCal;
|
|
m_fAdd=dlg.m_fAdd;
|
|
m_wide_graph_window->setFcal(m_fCal);
|
|
m_fs96000=dlg.m_fs96000;
|
|
m_network=dlg.m_network;
|
|
m_udpPort=dlg.m_udpPort;
|
|
m_dB=dlg.m_dB;
|
|
soundInThread.setScale(m_dB);
|
|
|
|
if(dlg.m_restartSoundIn) {
|
|
soundInThread.quit();
|
|
soundInThread.wait(1000);
|
|
soundInThread.setNetwork(m_network);
|
|
soundInThread.setRate(96000.0);
|
|
soundInThread.setFadd(m_fAdd);
|
|
soundInThread.setNrx(1);
|
|
soundInThread.start(QThread::HighestPriority);
|
|
}
|
|
}
|
|
}
|
|
|
|
void MainWindow::on_monitorButton_clicked() //Monitor
|
|
{
|
|
m_monitoring=true;
|
|
soundInThread.setMonitoring(true);
|
|
m_diskData=false;
|
|
}
|
|
void MainWindow::on_actionLinrad_triggered() //Linrad palette
|
|
{
|
|
if(m_wide_graph_window) m_wide_graph_window->setPalette("Linrad");
|
|
}
|
|
|
|
void MainWindow::on_actionCuteSDR_triggered() //CuteSDR palette
|
|
{
|
|
if(m_wide_graph_window) m_wide_graph_window->setPalette("CuteSDR");
|
|
}
|
|
|
|
void MainWindow::on_actionAFMHot_triggered()
|
|
{
|
|
if(m_wide_graph_window) m_wide_graph_window->setPalette("AFMHot");
|
|
}
|
|
|
|
void MainWindow::on_actionBlue_triggered()
|
|
{
|
|
if(m_wide_graph_window) m_wide_graph_window->setPalette("Blue");
|
|
}
|
|
|
|
void MainWindow::on_actionAbout_triggered() //Display "About"
|
|
{
|
|
CAboutDlg dlg(this);
|
|
dlg.exec();
|
|
}
|
|
|
|
void MainWindow::keyPressEvent( QKeyEvent *e ) //keyPressEvent
|
|
{
|
|
switch(e->key())
|
|
{
|
|
case Qt::Key_F4:
|
|
ui->dxCallEntry->setText("");
|
|
ui->dxGridEntry->setText("");
|
|
break;
|
|
case Qt::Key_F6:
|
|
if(e->modifiers() & Qt::ShiftModifier) {
|
|
on_actionDecode_remaining_files_in_directory_triggered();
|
|
}
|
|
break;
|
|
case Qt::Key_F11:
|
|
if(e->modifiers() & Qt::ShiftModifier) {
|
|
} else {
|
|
int n0=m_wide_graph_window->DF();
|
|
int n=(n0 + 10000) % 5;
|
|
if(n==0) n=5;
|
|
m_wide_graph_window->setDF(n0-n);
|
|
}
|
|
break;
|
|
case Qt::Key_F12:
|
|
if(e->modifiers() & Qt::ShiftModifier) {
|
|
} else {
|
|
int n0=m_wide_graph_window->DF();
|
|
int n=(n0 + 10000) % 5;
|
|
if(n==0) n=5;
|
|
m_wide_graph_window->setDF(n0+n);
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
|
|
void MainWindow::bumpDF(int n) //bumpDF()
|
|
{
|
|
if(n==11) {
|
|
int n0=m_wide_graph_window->DF();
|
|
int n=(n0 + 10000) % 5;
|
|
if(n==0) n=5;
|
|
m_wide_graph_window->setDF(n0-n);
|
|
}
|
|
if(n==12) {
|
|
int n0=m_wide_graph_window->DF();
|
|
int n=(n0 + 10000) % 5;
|
|
if(n==0) n=5;
|
|
m_wide_graph_window->setDF(n0+n);
|
|
}
|
|
}
|
|
|
|
bool MainWindow::eventFilter(QObject *object, QEvent *event) //eventFilter()
|
|
{
|
|
if (event->type() == QEvent::KeyPress) {
|
|
//Use the event in parent using its keyPressEvent()
|
|
QKeyEvent *keyEvent = static_cast<QKeyEvent *>(event);
|
|
MainWindow::keyPressEvent(keyEvent);
|
|
return QObject::eventFilter(object, event);
|
|
}
|
|
return QObject::eventFilter(object, event);
|
|
}
|
|
|
|
void MainWindow::createStatusBar() //createStatusBar
|
|
{
|
|
lab1 = new QLabel("Receiving");
|
|
lab1->setAlignment(Qt::AlignHCenter);
|
|
lab1->setMinimumSize(QSize(80,10));
|
|
lab1->setStyleSheet("QLabel{background-color: #00ff00}");
|
|
lab1->setFrameStyle(QFrame::Panel | QFrame::Sunken);
|
|
statusBar()->addWidget(lab1);
|
|
|
|
lab4 = new QLabel("");
|
|
lab4->setAlignment(Qt::AlignHCenter);
|
|
lab4->setMinimumSize(QSize(80,10));
|
|
lab4->setFrameStyle(QFrame::Panel | QFrame::Sunken);
|
|
statusBar()->addWidget(lab4);
|
|
|
|
lab5 = new QLabel("");
|
|
lab5->setAlignment(Qt::AlignHCenter);
|
|
lab5->setMinimumSize(QSize(50,10));
|
|
lab5->setFrameStyle(QFrame::Panel | QFrame::Sunken);
|
|
statusBar()->addWidget(lab5);
|
|
|
|
lab6 = new QLabel("");
|
|
lab6->setAlignment(Qt::AlignHCenter);
|
|
lab6->setMinimumSize(QSize(50,10));
|
|
lab6->setFrameStyle(QFrame::Panel | QFrame::Sunken);
|
|
statusBar()->addWidget(lab6);
|
|
}
|
|
|
|
void MainWindow::on_tolSpinBox_valueChanged(int i) //tolSpinBox
|
|
{
|
|
static int ntol[] = {10,20,50,100,200,500,1000};
|
|
m_tol=ntol[i];
|
|
m_wide_graph_window->setTol(m_tol);
|
|
ui->labTol1->setText(QString::number(ntol[i]));
|
|
}
|
|
|
|
void MainWindow::on_actionExit_triggered() //Exit()
|
|
{
|
|
close ();
|
|
}
|
|
|
|
void MainWindow::closeEvent (QCloseEvent * e)
|
|
{
|
|
if (m_gui_timer) m_gui_timer->stop ();
|
|
m_wide_graph_window->saveSettings();
|
|
if (m_astro_window) m_astro_window->close ();
|
|
if (m_wide_graph_window) m_wide_graph_window->close ();
|
|
QMainWindow::closeEvent (e);
|
|
}
|
|
|
|
void MainWindow::on_stopButton_clicked() //stopButton
|
|
{
|
|
m_monitoring=false;
|
|
soundInThread.setMonitoring(m_monitoring);
|
|
m_loopall=false;
|
|
}
|
|
|
|
void MainWindow::msgBox(QString t) //msgBox
|
|
{
|
|
msgBox0.setText(t);
|
|
msgBox0.exec();
|
|
}
|
|
|
|
void MainWindow::on_actionAstro_Data_triggered() //Display Astro
|
|
{
|
|
if (m_astro_window ) m_astro_window->show();
|
|
}
|
|
|
|
void MainWindow::on_actionWide_Waterfall_triggered() //Display Waterfalls
|
|
{
|
|
m_wide_graph_window->show();
|
|
}
|
|
|
|
void MainWindow::on_actionOpen_triggered() //Open File
|
|
{
|
|
m_monitoring=false;
|
|
soundInThread.setMonitoring(m_monitoring);
|
|
QString fname;
|
|
fname=QFileDialog::getOpenFileName(this, "Open File", m_path,
|
|
"MAP65/Q65W Files (*.iq)");
|
|
if(fname != "") {
|
|
m_path=fname;
|
|
int i;
|
|
i=fname.indexOf(".iq") - 11;
|
|
if(i>=0) {
|
|
lab1->setStyleSheet("QLabel{background-color: #66ff66}");
|
|
lab1->setText(" " + fname.mid(i,15) + " ");
|
|
}
|
|
on_stopButton_clicked();
|
|
m_diskData=true;
|
|
int dbDgrd=0;
|
|
if(m_myCall=="K1JT" and m_idInt<0) dbDgrd=m_idInt;
|
|
*future1 = QtConcurrent::run(getfile, fname, false, dbDgrd);
|
|
watcher1->setFuture(*future1);
|
|
}
|
|
}
|
|
|
|
void MainWindow::on_actionOpen_next_in_directory_triggered() //Open Next
|
|
{
|
|
int i,len;
|
|
QFileInfo fi(m_path);
|
|
QStringList list;
|
|
list= fi.dir().entryList().filter(".iq");
|
|
for (i = 0; i < list.size()-1; ++i) {
|
|
if(i==list.size()-2) m_loopall=false;
|
|
len=list.at(i).length();
|
|
if(list.at(i)==m_path.right(len)) {
|
|
int n=m_path.length();
|
|
QString fname=m_path.replace(n-len,len,list.at(i+1));
|
|
m_path=fname;
|
|
int i;
|
|
i=fname.indexOf(".iq") - 11;
|
|
if(i>=0) {
|
|
lab1->setStyleSheet("QLabel{background-color: #66ff66}");
|
|
lab1->setText(" " + fname.mid(i,len) + " ");
|
|
}
|
|
m_diskData=true;
|
|
int dbDgrd=0;
|
|
if(m_myCall=="K1JT" and m_idInt<0) dbDgrd=m_idInt;
|
|
*future1 = QtConcurrent::run(getfile, fname, false, dbDgrd);
|
|
watcher1->setFuture(*future1);
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
//Open all remaining files
|
|
void MainWindow::on_actionDecode_remaining_files_in_directory_triggered()
|
|
{
|
|
m_loopall=true;
|
|
on_actionOpen_next_in_directory_triggered();
|
|
}
|
|
|
|
void MainWindow::diskDat() //diskDat()
|
|
{
|
|
double hsym;
|
|
//These may be redundant??
|
|
m_diskData=true;
|
|
datcom_.newdat=1;
|
|
if(m_wide_graph_window->m_bForceCenterFreq) {
|
|
datcom_.fcenter=m_wide_graph_window->m_dForceCenterFreq;
|
|
}
|
|
|
|
hsym=2048.0*96000.0/11025.0; //Samples per JT65 half-symbol
|
|
for(int i=0; i<304; i++) { // Do the half-symbol FFTs
|
|
int k = i*hsym + 2048.5;
|
|
dataSink(k);
|
|
qApp->processEvents(); // Allow the waterfall to update
|
|
}
|
|
}
|
|
|
|
void MainWindow::diskWriteFinished() //diskWriteFinished
|
|
{
|
|
// qDebug() << "diskWriteFinished";
|
|
}
|
|
|
|
void MainWindow::decoderFinished() //diskWriteFinished
|
|
{
|
|
m_startAnother=m_loopall;
|
|
ui->DecodeButton->setStyleSheet("");
|
|
decodeBusy(false);
|
|
|
|
QString t1;
|
|
t1=t1.asprintf(" %3d/%d ",decodes_.ndecodes,decodes_.ncand);
|
|
lab5->setText(t1);
|
|
}
|
|
|
|
void MainWindow::on_actionDelete_all_iq_files_in_SaveDir_triggered()
|
|
{
|
|
int i;
|
|
QString fname;
|
|
int ret = QMessageBox::warning(this, "Confirm Delete",
|
|
"Are you sure you want to delete all *.iq files in\n" +
|
|
QDir::toNativeSeparators(m_saveDir) + " ?",
|
|
QMessageBox::Yes | QMessageBox::No, QMessageBox::Yes);
|
|
if(ret==QMessageBox::Yes) {
|
|
QDir dir(m_saveDir);
|
|
QStringList files=dir.entryList(QDir::Files);
|
|
QList<QString>::iterator f;
|
|
for(f=files.begin(); f!=files.end(); ++f) {
|
|
fname=*f;
|
|
i=(fname.indexOf(".iq"));
|
|
if(i==11) dir.remove(fname);
|
|
}
|
|
}
|
|
}
|
|
|
|
void MainWindow::on_actionNo_Deep_Search_triggered()
|
|
{
|
|
m_ndepth=0;
|
|
}
|
|
|
|
void MainWindow::on_actionNormal_Deep_Search_triggered()
|
|
{
|
|
m_ndepth=1;
|
|
}
|
|
|
|
void MainWindow::on_actionAggressive_Deep_Search_triggered()
|
|
{
|
|
m_ndepth=2;
|
|
}
|
|
|
|
void MainWindow::on_actionNone_triggered() //Save None
|
|
{
|
|
m_saveAll=false;
|
|
}
|
|
|
|
// ### Implement "Save Last" here? ###
|
|
|
|
void MainWindow::on_actionSave_all_triggered() //Save All
|
|
{
|
|
m_saveAll=true;
|
|
}
|
|
//Display list of keyboard shortcuts //Display list of mouse commands //Diaplay list of Add-On pfx/sfx
|
|
void MainWindow::on_DecodeButton_clicked() //Decode request
|
|
{
|
|
int n=m_sec0%m_TRperiod;
|
|
if(m_monitoring and n>47 and (n<52 or m_decoderBusy)) return;
|
|
if(!m_decoderBusy) {
|
|
datcom_.newdat=0;
|
|
datcom_.nagain=1;
|
|
decode();
|
|
}
|
|
}
|
|
|
|
void MainWindow::freezeDecode(int n) //freezeDecode()
|
|
{
|
|
if(n==2) {
|
|
ui->tolSpinBox->setValue(5);
|
|
datcom_.ntol=m_tol;
|
|
datcom_.mousedf=0;
|
|
} else {
|
|
ui->tolSpinBox->setValue(qMin(3,ui->tolSpinBox->value()));
|
|
datcom_.ntol=m_tol;
|
|
}
|
|
if(!m_decoderBusy) {
|
|
datcom_.nagain=1;
|
|
datcom_.newdat=0;
|
|
decode();
|
|
}
|
|
}
|
|
|
|
void MainWindow::decode() //decode()
|
|
{
|
|
ui->DecodeButton->setStyleSheet(m_pbdecoding_style1);
|
|
|
|
if(datcom_.nagain==0 && (!m_diskData)) {
|
|
qint64 ms = QDateTime::currentMSecsSinceEpoch() % 86400000;
|
|
int imin=ms/60000;
|
|
int ihr=imin/60;
|
|
imin=imin % 60;
|
|
datcom_.nutc=100*ihr + imin;
|
|
}
|
|
|
|
datcom_.idphi=m_dPhi;
|
|
datcom_.mousedf=m_wide_graph_window->DF();
|
|
datcom_.mousefqso=m_wide_graph_window->QSOfreq();
|
|
datcom_.ndepth=m_ndepth;
|
|
datcom_.ndiskdat=0;
|
|
if(m_diskData) {
|
|
datcom_.ndiskdat=1;
|
|
int i0=m_path.indexOf(".iq");
|
|
if(i0>0) {
|
|
// Compute self Doppler using the filename for Date and Time
|
|
int nyear=m_path.mid(i0-11,2).toInt()+2000;
|
|
int month=m_path.mid(i0-9,2).toInt();
|
|
int nday=m_path.mid(i0-7,2).toInt();
|
|
int nhr=m_path.mid(i0-4,2).toInt();
|
|
int nmin=m_path.mid(i0-2,2).toInt();
|
|
double uth=nhr + nmin/60.0;
|
|
int nfreq=(int)datcom_.fcenter;
|
|
int ndop00;
|
|
astrosub00_(&nyear, &month, &nday, &uth, &nfreq, m_myGrid.toLatin1(),&ndop00,6);
|
|
datcom_.ndop00=ndop00; //Send self Doppler to decoder, via datcom
|
|
}
|
|
}
|
|
datcom_.neme=0;
|
|
if(ui->actionOnly_EME_calls->isChecked()) datcom_.neme=1;
|
|
|
|
int ispan=int(m_wide_graph_window->fSpan());
|
|
if(ispan%2 == 1) ispan++;
|
|
int ifc=int(1000.0*(datcom_.fcenter - int(datcom_.fcenter))+0.5);
|
|
int nfa=m_wide_graph_window->nStartFreq();
|
|
int nfb=nfa+ispan;
|
|
int nfshift=nfa + ispan/2 - ifc;
|
|
|
|
datcom_.nfa=nfa;
|
|
datcom_.nfb=nfb;
|
|
datcom_.nfcal=m_fCal;
|
|
datcom_.nfshift=nfshift;
|
|
datcom_.mcall3=0;
|
|
if(m_call3Modified) datcom_.mcall3=1;
|
|
datcom_.ntimeout=m_timeout;
|
|
datcom_.ntol=m_tol;
|
|
datcom_.nxant=0;
|
|
m_nutc0=datcom_.nutc;
|
|
datcom_.junk_1=0;
|
|
datcom_.nfsample=96000;
|
|
if(!m_fs96000) datcom_.nfsample=95238;
|
|
datcom_.nxpol=0;
|
|
datcom_.nmode=10*m_modeQ65;
|
|
datcom_.nsave=m_nsave;
|
|
datcom_.max_drift=ui->sbMaxDrift->value();
|
|
|
|
QString mcall=(m_myCall+" ").mid(0,12);
|
|
QString mgrid=(m_myGrid+" ").mid(0,6);
|
|
QString hcall=(ui->dxCallEntry->text()+" ").mid(0,12);
|
|
QString hgrid=(ui->dxGridEntry->text()+" ").mid(0,6);
|
|
|
|
memcpy(datcom_.mycall, mcall.toLatin1(), 12);
|
|
memcpy(datcom_.mygrid, mgrid.toLatin1(), 6);
|
|
memcpy(datcom_.hiscall, hcall.toLatin1(), 12);
|
|
memcpy(datcom_.hisgrid, hgrid.toLatin1(), 6);
|
|
memcpy(datcom_.datetime, m_dateTime.toLatin1(), 17);
|
|
datcom_.junk1=1234; //Cecck for these values in m65
|
|
datcom_.junk2=5678;
|
|
|
|
char *to = (char*) datcom2_.d4;
|
|
char *from = (char*) datcom_.d4;
|
|
memcpy(to, from, sizeof(datcom_));
|
|
datcom_.nagain=0;
|
|
datcom_.ndiskdat=0;
|
|
m_call3Modified=false;
|
|
|
|
decodes_.ndecodes=0;
|
|
decodes_.ncand=0;
|
|
m_fetched=0;
|
|
int itimer=0;
|
|
watcher3.setFuture(QtConcurrent::run (std::bind (q65c_, &itimer)));
|
|
|
|
decodeBusy(true);
|
|
}
|
|
|
|
void MainWindow::on_EraseButton_clicked()
|
|
{
|
|
ui->decodedTextBrowser->clear();
|
|
lab5->clear();
|
|
}
|
|
|
|
|
|
void MainWindow::decodeBusy(bool b) //decodeBusy()
|
|
{
|
|
m_decoderBusy=b;
|
|
ui->DecodeButton->setEnabled(!b);
|
|
ui->actionOpen->setEnabled(!b);
|
|
ui->actionOpen_next_in_directory->setEnabled(!b);
|
|
ui->actionDecode_remaining_files_in_directory->setEnabled(!b);
|
|
}
|
|
|
|
//------------------------------------------------------------- //guiUpdate()
|
|
void MainWindow::guiUpdate()
|
|
{
|
|
int khsym=0;
|
|
|
|
qint64 ms = QDateTime::currentMSecsSinceEpoch() % 86400000;
|
|
int nsec=ms/1000;
|
|
|
|
if(m_monitoring) {
|
|
ui->monitorButton->setStyleSheet(m_pbmonitor_style);
|
|
} else {
|
|
ui->monitorButton->setStyleSheet("");
|
|
}
|
|
|
|
m_wide_graph_window->updateFreqLabel();
|
|
|
|
if(m_startAnother) {
|
|
m_startAnother=false;
|
|
on_actionOpen_next_in_directory_triggered();
|
|
}
|
|
|
|
if(decodes_.ndecodes>m_fetched) {
|
|
while(m_fetched<decodes_.ndecodes) {
|
|
QString t=QString::fromLatin1(decodes_.result[m_fetched]);
|
|
ui->decodedTextBrowser->append(t.trimmed());
|
|
m_fetched++;
|
|
}
|
|
mem_q65w.lock();
|
|
memcpy((char*)ipc_wsjtx, &decodes_, sizeof(decodes_));
|
|
mem_q65w.unlock();
|
|
}
|
|
|
|
if(nsec != m_sec0) { //Once per second
|
|
// qDebug() << "AAA" << nsec%60 << ipc_wsjtx[3] << ipc_wsjtx[4]<< m_monitoring;
|
|
|
|
if(m_pctZap>30.0) {
|
|
lab4->setStyleSheet("QLabel{background-color: #ff0000}");
|
|
} else {
|
|
lab4->setStyleSheet("");
|
|
}
|
|
|
|
if(m_monitoring) {
|
|
lab1->setStyleSheet("QLabel{background-color: #00ff00}");
|
|
m_nrx=soundInThread.nrx();
|
|
khsym=soundInThread.mhsym();
|
|
QString t;
|
|
if(m_network) {
|
|
if(m_nrx==-1) t="F1";
|
|
if(m_nrx==1) t="I1";
|
|
if(m_nrx==-2) t="F2";
|
|
if(m_nrx==+2) t="I2";
|
|
} else {
|
|
if(m_nrx==1) t="S1";
|
|
if(m_nrx==2) t="S2";
|
|
}
|
|
if(khsym==m_hsym0) {
|
|
t="Nil";
|
|
lab1->setStyleSheet("QLabel{background-color: #ffc0cb}");
|
|
}
|
|
lab1->setText("Receiving " + t);
|
|
} else if (!m_diskData) {
|
|
lab1->setStyleSheet("");
|
|
lab1->setText("");
|
|
}
|
|
|
|
QDateTime t = QDateTime::currentDateTimeUtc();
|
|
int fQSO=m_wide_graph_window->QSOfreq();
|
|
m_astro_window->astroUpdate(t, m_myGrid, m_hisGrid, fQSO, m_setftx,
|
|
m_txFreq, m_azelDir, m_xavg);
|
|
m_setftx=0;
|
|
QString utc = t.date().toString(" yyyy MMM dd \n") + t.time().toString();
|
|
ui->labUTC->setText(utc);
|
|
m_hsym0=khsym;
|
|
m_sec0=nsec;
|
|
}
|
|
}
|
|
|
|
void MainWindow::lookup() //lookup()
|
|
{
|
|
QString hiscall=ui->dxCallEntry->text().toUpper().trimmed();
|
|
ui->dxCallEntry->setText(hiscall);
|
|
QString call3File = m_appDir + "/CALL3.TXT";
|
|
QFile f(call3File);
|
|
if(!f.open(QIODevice::ReadOnly | QIODevice::Text)) {
|
|
msgBox("Cannot open " + call3File);
|
|
return;
|
|
}
|
|
char c[132];
|
|
qint64 n=0;
|
|
for(int i=0; i<999999; i++) {
|
|
n=f.readLine(c,sizeof(c));
|
|
if(n <= 0) {
|
|
ui->dxGridEntry->setText("");
|
|
break;
|
|
}
|
|
QString t=QString(c);
|
|
if(t.indexOf(hiscall)==0) {
|
|
int i1=t.indexOf(",");
|
|
QString hisgrid=t.mid(i1+1,6);
|
|
i1=hisgrid.indexOf(",");
|
|
if(i1>0) {
|
|
hisgrid=hisgrid.mid(0,4);
|
|
} else {
|
|
hisgrid=hisgrid.mid(0,4) + hisgrid.mid(4,2).toLower();
|
|
}
|
|
ui->dxGridEntry->setText(hisgrid);
|
|
break;
|
|
}
|
|
}
|
|
f.close();
|
|
}
|
|
|
|
void MainWindow::on_lookupButton_clicked() //Lookup button
|
|
{
|
|
lookup();
|
|
}
|
|
|
|
void MainWindow::on_addButton_clicked() //Add button
|
|
{
|
|
if(ui->dxGridEntry->text()=="") {
|
|
msgBox("Please enter a valid grid locator.");
|
|
return;
|
|
}
|
|
m_call3Modified=false;
|
|
QString hiscall=ui->dxCallEntry->text().toUpper().trimmed();
|
|
QString hisgrid=ui->dxGridEntry->text().trimmed();
|
|
QString newEntry=hiscall + "," + hisgrid;
|
|
|
|
int ret = QMessageBox::warning(this, "Add",
|
|
newEntry + "\n" + "Is this station known to be active on EME?",
|
|
QMessageBox::Yes | QMessageBox::No, QMessageBox::Yes);
|
|
if(ret==QMessageBox::Yes) {
|
|
newEntry += ",EME,,";
|
|
} else {
|
|
newEntry += ",,,";
|
|
}
|
|
QString call3File = m_appDir + "/CALL3.TXT";
|
|
QFile f1(call3File);
|
|
if(!f1.open(QIODevice::ReadWrite | QIODevice::Text)) {
|
|
msgBox("Cannot open " + call3File);
|
|
return;
|
|
}
|
|
|
|
if(f1.size()==0) {
|
|
QTextStream out(&f1);
|
|
out << "ZZZZZZ"
|
|
#if QT_VERSION >= QT_VERSION_CHECK (5, 15, 0)
|
|
<< Qt::endl
|
|
#else
|
|
<< endl
|
|
#endif
|
|
;
|
|
f1.seek (0);
|
|
}
|
|
|
|
QString tmpFile = m_appDir + "/CALL3.TMP";
|
|
QFile f2(tmpFile);
|
|
if(!f2.open(QIODevice::ReadWrite | QIODevice::Truncate | QIODevice::Text)) {
|
|
msgBox("Cannot open " + tmpFile);
|
|
return;
|
|
}
|
|
{
|
|
QTextStream in(&f1);
|
|
QTextStream out(&f2);
|
|
QString hc=hiscall;
|
|
QString hc1="";
|
|
QString hc2="000000";
|
|
QString s;
|
|
do {
|
|
s=in.readLine();
|
|
hc1=hc2;
|
|
if(s.mid(0,2)=="//") {
|
|
out << s + "\n";
|
|
} else {
|
|
int i1=s.indexOf(",");
|
|
hc2=s.mid(0,i1);
|
|
if(hc>hc1 && hc<hc2) {
|
|
out << newEntry + "\n";
|
|
out << s + "\n";
|
|
m_call3Modified=true;
|
|
} else if(hc==hc2) {
|
|
QString t=s + "\n\n is already in CALL3.TXT\n" +
|
|
"Do you wish to replace it?";
|
|
int ret = QMessageBox::warning(this, "Add",t,
|
|
QMessageBox::Yes | QMessageBox::No, QMessageBox::Yes);
|
|
if(ret==QMessageBox::Yes) {
|
|
out << newEntry + "\n";
|
|
m_call3Modified=true;
|
|
}
|
|
} else {
|
|
if(s!="") out << s + "\n";
|
|
}
|
|
}
|
|
} while(!s.isNull());
|
|
if(hc>hc1 && !m_call3Modified) out << newEntry + "\n";
|
|
}
|
|
|
|
if(m_call3Modified) {
|
|
auto const& old_path = m_appDir + "/CALL3.OLD";
|
|
QFile f0 {old_path};
|
|
if (f0.exists ()) f0.remove ();
|
|
f1.copy (old_path); // copying as we want to preserve
|
|
// symlinks
|
|
f1.open (QFile::WriteOnly | QFile::Text); // truncates
|
|
f2.seek (0);
|
|
f1.write (f2.readAll ()); // copy contents
|
|
f2.remove ();
|
|
}
|
|
}
|
|
|
|
void MainWindow::on_dxCallEntry_textChanged(const QString &t) //dxCall changed
|
|
{
|
|
m_hisCall=t.toUpper().trimmed();
|
|
ui->dxCallEntry->setText(m_hisCall);
|
|
}
|
|
|
|
void MainWindow::on_dxGridEntry_textChanged(const QString &t) //dxGrid changed
|
|
{
|
|
int n=t.length();
|
|
if(n!=4 and n!=6) return;
|
|
if(!t[0].isLetter() or !t[1].isLetter()) return;
|
|
if(!t[2].isDigit() or !t[3].isDigit()) return;
|
|
if(n==4) m_hisGrid=t.mid(0,2).toUpper() + t.mid(2,2);
|
|
if(n==6) m_hisGrid=t.mid(0,2).toUpper() + t.mid(2,2) +
|
|
t.mid(4,2).toLower();
|
|
ui->dxGridEntry->setText(m_hisGrid);
|
|
}
|
|
|
|
void MainWindow::on_actionQ65A_triggered()
|
|
{
|
|
m_modeQ65=1;
|
|
lab6->setStyleSheet("QLabel{background-color: #ffb266}");
|
|
lab6->setText("Q65A");
|
|
}
|
|
|
|
void MainWindow::on_actionQ65B_triggered()
|
|
{
|
|
m_modeQ65=2;
|
|
lab6->setStyleSheet("QLabel{background-color: #b2ff66}");
|
|
lab6->setText("Q65B");
|
|
}
|
|
|
|
void MainWindow::on_actionQ65C_triggered()
|
|
{
|
|
m_modeQ65=3;
|
|
lab6->setStyleSheet("QLabel{background-color: #66ffff}");
|
|
lab6->setText("Q65C");
|
|
}
|
|
|
|
void MainWindow::on_actionQ65D_triggered()
|
|
{
|
|
m_modeQ65=4;
|
|
lab6->setStyleSheet("QLabel{background-color: #b266ff}");
|
|
lab6->setText("Q65D");
|
|
}
|
|
|
|
void MainWindow::on_actionQ65E_triggered()
|
|
{
|
|
m_modeQ65=5;
|
|
lab6->setStyleSheet("QLabel{background-color: #ff66ff}");
|
|
lab6->setText("Q65E");
|
|
}
|
|
|
|
|
|
void MainWindow::on_NBcheckBox_toggled(bool checked)
|
|
{
|
|
m_NB=checked;
|
|
ui->NBslider->setEnabled(m_NB);
|
|
}
|
|
|
|
void MainWindow::on_NBslider_valueChanged(int n)
|
|
{
|
|
m_NBslider=n;
|
|
}
|
|
|
|
bool MainWindow::isGrid4(QString g)
|
|
{
|
|
if(g.length()!=4) return false;
|
|
if(g.mid(0,1)<'A' or g.mid(0,1)>'R') return false;
|
|
if(g.mid(1,1)<'A' or g.mid(1,1)>'R') return false;
|
|
if(g.mid(2,1)<'0' or g.mid(2,1)>'9') return false;
|
|
if(g.mid(3,1)<'0' or g.mid(3,1)>'9') return false;
|
|
return true;
|
|
}
|