mirror of
				https://github.com/saitohirga/WSJT-X.git
				synced 2025-11-03 21:40:52 -05:00 
			
		
		
		
	Remouve stuff related to soundout and txtune.
This commit is contained in:
		
							parent
							
								
									cd5a925208
								
							
						
					
					
						commit
						2a2bc4e69b
					
				@ -12,8 +12,6 @@ set (q65w_CXXSRCS
 | 
				
			|||||||
  set570.cpp
 | 
					  set570.cpp
 | 
				
			||||||
  signalmeter.cpp
 | 
					  signalmeter.cpp
 | 
				
			||||||
  soundin.cpp
 | 
					  soundin.cpp
 | 
				
			||||||
  soundout.cpp
 | 
					 | 
				
			||||||
  txtune.cpp
 | 
					 | 
				
			||||||
  widegraph.cpp
 | 
					  widegraph.cpp
 | 
				
			||||||
  )
 | 
					  )
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -26,7 +24,6 @@ set (q65w_UISRCS
 | 
				
			|||||||
  astro.ui
 | 
					  astro.ui
 | 
				
			||||||
  devsetup.ui
 | 
					  devsetup.ui
 | 
				
			||||||
  mainwindow.ui
 | 
					  mainwindow.ui
 | 
				
			||||||
  txtune.ui
 | 
					 | 
				
			||||||
  widegraph.ui
 | 
					  widegraph.ui
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
@ -15,7 +15,6 @@
 | 
				
			|||||||
#include "about.h"
 | 
					#include "about.h"
 | 
				
			||||||
#include "astro.h"
 | 
					#include "astro.h"
 | 
				
			||||||
#include "widegraph.h"
 | 
					#include "widegraph.h"
 | 
				
			||||||
#include "txtune.h"
 | 
					 | 
				
			||||||
#include "sleep.h"
 | 
					#include "sleep.h"
 | 
				
			||||||
#include <portaudio.h>
 | 
					#include <portaudio.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -23,20 +22,16 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
short int iwave[2*60*12000];          //Wave file for Tx audio
 | 
					short int iwave[2*60*12000];          //Wave file for Tx audio
 | 
				
			||||||
int nwave;                            //Length of Tx waveform
 | 
					int nwave;                            //Length of Tx waveform
 | 
				
			||||||
bool btxok;                           //True if OK to transmit
 | 
					 | 
				
			||||||
bool bTune;
 | 
					bool bTune;
 | 
				
			||||||
bool bIQxt;
 | 
					bool bIQxt;
 | 
				
			||||||
double outputLatency;                 //Latency in seconds
 | 
					double outputLatency;                 //Latency in seconds
 | 
				
			||||||
int txPower;
 | 
					 | 
				
			||||||
int iqAmp;
 | 
					int iqAmp;
 | 
				
			||||||
int iqPhase;
 | 
					int iqPhase;
 | 
				
			||||||
qint16 id[4*60*96000];
 | 
					qint16 id[4*60*96000];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
TxTune*    g_pTxTune = NULL;
 | 
					 | 
				
			||||||
QSharedMemory mem_m65("mem_m65");
 | 
					QSharedMemory mem_m65("mem_m65");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
extern const int RxDataFrequency = 96000;
 | 
					extern const int RxDataFrequency = 96000;
 | 
				
			||||||
extern const int TxDataFrequency = 11025;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
//-------------------------------------------------- MainWindow constructor
 | 
					//-------------------------------------------------- MainWindow constructor
 | 
				
			||||||
MainWindow::MainWindow(QWidget *parent) :
 | 
					MainWindow::MainWindow(QWidget *parent) :
 | 
				
			||||||
@ -107,20 +102,14 @@ MainWindow::MainWindow(QWidget *parent) :
 | 
				
			|||||||
  m_auto=false;
 | 
					  m_auto=false;
 | 
				
			||||||
  m_waterfallAvg = 1;
 | 
					  m_waterfallAvg = 1;
 | 
				
			||||||
  m_network = true;
 | 
					  m_network = true;
 | 
				
			||||||
  m_txFirst=false;
 | 
					 | 
				
			||||||
  m_txMute=false;
 | 
					 | 
				
			||||||
  btxok=false;
 | 
					 | 
				
			||||||
  m_restart=false;
 | 
					  m_restart=false;
 | 
				
			||||||
  m_transmitting=false;
 | 
					  m_transmitting=false;
 | 
				
			||||||
  m_widebandDecode=false;
 | 
					  m_widebandDecode=false;
 | 
				
			||||||
  m_ntx=1;
 | 
					 | 
				
			||||||
  m_myCall="K1JT";
 | 
					  m_myCall="K1JT";
 | 
				
			||||||
  m_myGrid="FN20qi";
 | 
					  m_myGrid="FN20qi";
 | 
				
			||||||
  m_saveDir="/users/joe/map65/install/save";
 | 
					  m_saveDir="/users/joe/map65/install/save";
 | 
				
			||||||
  m_azelDir="/users/joe/map65/install/";
 | 
					  m_azelDir="/users/joe/map65/install/";
 | 
				
			||||||
  m_editorCommand="notepad";
 | 
					  m_editorCommand="notepad";
 | 
				
			||||||
  m_txFreq=125;
 | 
					 | 
				
			||||||
  m_setftx=0;
 | 
					 | 
				
			||||||
  m_loopall=false;
 | 
					  m_loopall=false;
 | 
				
			||||||
  m_startAnother=false;
 | 
					  m_startAnother=false;
 | 
				
			||||||
  m_saveAll=false;
 | 
					  m_saveAll=false;
 | 
				
			||||||
@ -143,9 +132,6 @@ MainWindow::MainWindow(QWidget *parent) :
 | 
				
			|||||||
  m_modeJT65=0;
 | 
					  m_modeJT65=0;
 | 
				
			||||||
  m_modeQ65=0;
 | 
					  m_modeQ65=0;
 | 
				
			||||||
  m_TRperiod=60;
 | 
					  m_TRperiod=60;
 | 
				
			||||||
  m_modeTx="JT65";
 | 
					 | 
				
			||||||
  bTune=false;
 | 
					 | 
				
			||||||
  txPower=100;
 | 
					 | 
				
			||||||
  iqAmp=0;
 | 
					  iqAmp=0;
 | 
				
			||||||
  iqPhase=0;
 | 
					  iqPhase=0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -229,10 +215,6 @@ MainWindow::MainWindow(QWidget *parent) :
 | 
				
			|||||||
  if(m_xpol) soundInThread.setNrx(2);
 | 
					  if(m_xpol) soundInThread.setNrx(2);
 | 
				
			||||||
  soundInThread.start(QThread::HighestPriority);
 | 
					  soundInThread.start(QThread::HighestPriority);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // Assign output device and start output thread
 | 
					 | 
				
			||||||
  soundOutThread.setOutputDevice(m_paOutDevice);
 | 
					 | 
				
			||||||
//  soundOutThread.start(QThread::HighPriority);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  m_monitoring=true;                           // Start with Monitoring ON
 | 
					  m_monitoring=true;                           // Start with Monitoring ON
 | 
				
			||||||
  soundInThread.setMonitoring(m_monitoring);
 | 
					  soundInThread.setMonitoring(m_monitoring);
 | 
				
			||||||
  m_diskData=false;
 | 
					  m_diskData=false;
 | 
				
			||||||
@ -244,7 +226,6 @@ MainWindow::MainWindow(QWidget *parent) :
 | 
				
			|||||||
  m_wide_graph_window->m_mult570=m_mult570;
 | 
					  m_wide_graph_window->m_mult570=m_mult570;
 | 
				
			||||||
  m_wide_graph_window->m_mult570Tx=m_mult570Tx;
 | 
					  m_wide_graph_window->m_mult570Tx=m_mult570Tx;
 | 
				
			||||||
  m_wide_graph_window->m_cal570=m_cal570;
 | 
					  m_wide_graph_window->m_cal570=m_cal570;
 | 
				
			||||||
  m_wide_graph_window->m_TxOffset=m_TxOffset;
 | 
					 | 
				
			||||||
  if(m_initIQplus) m_wide_graph_window->initIQplus();
 | 
					  if(m_initIQplus) m_wide_graph_window->initIQplus();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Create "m_worked", a dictionary of all calls in wsjt.log
 | 
					// Create "m_worked", a dictionary of all calls in wsjt.log
 | 
				
			||||||
@ -285,10 +266,6 @@ MainWindow::~MainWindow()
 | 
				
			|||||||
    soundInThread.quit();
 | 
					    soundInThread.quit();
 | 
				
			||||||
    soundInThread.wait(3000);
 | 
					    soundInThread.wait(3000);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
  if (soundOutThread.isRunning()) {
 | 
					 | 
				
			||||||
    soundOutThread.quitExecution=true;
 | 
					 | 
				
			||||||
    soundOutThread.wait(3000);
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
  Pa_Terminate();
 | 
					  Pa_Terminate();
 | 
				
			||||||
  fftwf_export_wisdom_to_filename (QDir {m_appDir}.absoluteFilePath ("map65_wisdom.dat").toLocal8Bit ());
 | 
					  fftwf_export_wisdom_to_filename (QDir {m_appDir}.absoluteFilePath ("map65_wisdom.dat").toLocal8Bit ());
 | 
				
			||||||
  if(!m_decoderBusy) {
 | 
					  if(!m_decoderBusy) {
 | 
				
			||||||
@ -306,7 +283,6 @@ void MainWindow::writeSettings()
 | 
				
			|||||||
    SettingsGroup g {&settings, "MainWindow"};
 | 
					    SettingsGroup g {&settings, "MainWindow"};
 | 
				
			||||||
    settings.setValue("geometry", saveGeometry());
 | 
					    settings.setValue("geometry", saveGeometry());
 | 
				
			||||||
    settings.setValue("MRUdir", m_path);
 | 
					    settings.setValue("MRUdir", m_path);
 | 
				
			||||||
    settings.setValue("TxFirst",m_txFirst);
 | 
					 | 
				
			||||||
    settings.setValue("DXcall",ui->dxCallEntry->text());
 | 
					    settings.setValue("DXcall",ui->dxCallEntry->text());
 | 
				
			||||||
    settings.setValue("DXgrid",ui->dxGridEntry->text());
 | 
					    settings.setValue("DXgrid",ui->dxGridEntry->text());
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
@ -315,7 +291,6 @@ void MainWindow::writeSettings()
 | 
				
			|||||||
  settings.setValue("MyCall",m_myCall);
 | 
					  settings.setValue("MyCall",m_myCall);
 | 
				
			||||||
  settings.setValue("MyGrid",m_myGrid);
 | 
					  settings.setValue("MyGrid",m_myGrid);
 | 
				
			||||||
  settings.setValue("IDint",m_idInt);
 | 
					  settings.setValue("IDint",m_idInt);
 | 
				
			||||||
  settings.setValue("PTTport",m_pttPort);
 | 
					 | 
				
			||||||
  settings.setValue("AstroFont",m_astroFont);
 | 
					  settings.setValue("AstroFont",m_astroFont);
 | 
				
			||||||
  settings.setValue("Xpol",m_xpol);
 | 
					  settings.setValue("Xpol",m_xpol);
 | 
				
			||||||
  settings.setValue("XpolX",m_xpolx);
 | 
					  settings.setValue("XpolX",m_xpolx);
 | 
				
			||||||
@ -324,7 +299,6 @@ void MainWindow::writeSettings()
 | 
				
			|||||||
  settings.setValue("Editor",m_editorCommand);
 | 
					  settings.setValue("Editor",m_editorCommand);
 | 
				
			||||||
  settings.setValue("DXCCpfx",m_dxccPfx);
 | 
					  settings.setValue("DXCCpfx",m_dxccPfx);
 | 
				
			||||||
  settings.setValue("Timeout",m_timeout);
 | 
					  settings.setValue("Timeout",m_timeout);
 | 
				
			||||||
  settings.setValue("TxPower",txPower);
 | 
					 | 
				
			||||||
  settings.setValue("IQamp",iqAmp);
 | 
					  settings.setValue("IQamp",iqAmp);
 | 
				
			||||||
  settings.setValue("IQphase",iqPhase);
 | 
					  settings.setValue("IQphase",iqPhase);
 | 
				
			||||||
  settings.setValue("ApplyIQcal",m_applyIQcal);
 | 
					  settings.setValue("ApplyIQcal",m_applyIQcal);
 | 
				
			||||||
@ -335,7 +309,6 @@ void MainWindow::writeSettings()
 | 
				
			|||||||
  settings.setValue("FSam96000", m_fs96000);
 | 
					  settings.setValue("FSam96000", m_fs96000);
 | 
				
			||||||
  settings.setValue("SoundInIndex",m_nDevIn);
 | 
					  settings.setValue("SoundInIndex",m_nDevIn);
 | 
				
			||||||
  settings.setValue("paInDevice",m_paInDevice);
 | 
					  settings.setValue("paInDevice",m_paInDevice);
 | 
				
			||||||
  settings.setValue("SoundOutIndex",m_nDevOut);
 | 
					 | 
				
			||||||
  settings.setValue("paOutDevice",m_paOutDevice);
 | 
					  settings.setValue("paOutDevice",m_paOutDevice);
 | 
				
			||||||
  settings.setValue("IQswap",m_IQswap);
 | 
					  settings.setValue("IQswap",m_IQswap);
 | 
				
			||||||
  settings.setValue("Scale_dB",m_dB);
 | 
					  settings.setValue("Scale_dB",m_dB);
 | 
				
			||||||
@ -349,7 +322,6 @@ void MainWindow::writeSettings()
 | 
				
			|||||||
  settings.setValue("Mode",m_mode);
 | 
					  settings.setValue("Mode",m_mode);
 | 
				
			||||||
  settings.setValue("nModeJT65",m_modeJT65);
 | 
					  settings.setValue("nModeJT65",m_modeJT65);
 | 
				
			||||||
  settings.setValue("nModeQ65",m_modeQ65);
 | 
					  settings.setValue("nModeQ65",m_modeQ65);
 | 
				
			||||||
  settings.setValue("TxMode",m_modeTx);
 | 
					 | 
				
			||||||
  settings.setValue("SaveNone",ui->actionNone->isChecked());
 | 
					  settings.setValue("SaveNone",ui->actionNone->isChecked());
 | 
				
			||||||
  settings.setValue("SaveAll",ui->actionSave_all->isChecked());
 | 
					  settings.setValue("SaveAll",ui->actionSave_all->isChecked());
 | 
				
			||||||
  settings.setValue("NDepth",m_ndepth);
 | 
					  settings.setValue("NDepth",m_ndepth);
 | 
				
			||||||
@ -362,9 +334,7 @@ void MainWindow::writeSettings()
 | 
				
			|||||||
  settings.setValue("PhaseX",(double)m_phasex);
 | 
					  settings.setValue("PhaseX",(double)m_phasex);
 | 
				
			||||||
  settings.setValue("PhaseY",(double)m_phasey);
 | 
					  settings.setValue("PhaseY",(double)m_phasey);
 | 
				
			||||||
  settings.setValue("Mult570",m_mult570);
 | 
					  settings.setValue("Mult570",m_mult570);
 | 
				
			||||||
  settings.setValue("Mult570Tx",m_mult570Tx);
 | 
					 | 
				
			||||||
  settings.setValue("Cal570",m_cal570);
 | 
					  settings.setValue("Cal570",m_cal570);
 | 
				
			||||||
  settings.setValue("TxOffset",m_TxOffset);
 | 
					 | 
				
			||||||
  settings.setValue("Colors",m_colors);
 | 
					  settings.setValue("Colors",m_colors);
 | 
				
			||||||
  settings.setValue("MaxDrift",ui->sbMaxDrift->value());
 | 
					  settings.setValue("MaxDrift",ui->sbMaxDrift->value());
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
@ -379,14 +349,12 @@ void MainWindow::readSettings()
 | 
				
			|||||||
    ui->dxCallEntry->setText(settings.value("DXcall","").toString());
 | 
					    ui->dxCallEntry->setText(settings.value("DXcall","").toString());
 | 
				
			||||||
    ui->dxGridEntry->setText(settings.value("DXgrid","").toString());
 | 
					    ui->dxGridEntry->setText(settings.value("DXgrid","").toString());
 | 
				
			||||||
    m_path = settings.value("MRUdir", m_appDir + "/save").toString();
 | 
					    m_path = settings.value("MRUdir", m_appDir + "/save").toString();
 | 
				
			||||||
    m_txFirst = settings.value("TxFirst",false).toBool();
 | 
					 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  SettingsGroup g {&settings, "Common"};
 | 
					  SettingsGroup g {&settings, "Common"};
 | 
				
			||||||
  m_myCall=settings.value("MyCall","").toString();
 | 
					  m_myCall=settings.value("MyCall","").toString();
 | 
				
			||||||
  m_myGrid=settings.value("MyGrid","").toString();
 | 
					  m_myGrid=settings.value("MyGrid","").toString();
 | 
				
			||||||
  m_idInt=settings.value("IDint",0).toInt();
 | 
					  m_idInt=settings.value("IDint",0).toInt();
 | 
				
			||||||
  m_pttPort=settings.value("PTTport",0).toInt();
 | 
					 | 
				
			||||||
  m_astroFont=settings.value("AstroFont",20).toInt();
 | 
					  m_astroFont=settings.value("AstroFont",20).toInt();
 | 
				
			||||||
  m_xpol=settings.value("Xpol",false).toBool();
 | 
					  m_xpol=settings.value("Xpol",false).toBool();
 | 
				
			||||||
  ui->actionFind_Delta_Phi->setEnabled(m_xpol);
 | 
					  ui->actionFind_Delta_Phi->setEnabled(m_xpol);
 | 
				
			||||||
@ -396,7 +364,6 @@ void MainWindow::readSettings()
 | 
				
			|||||||
  m_editorCommand=settings.value("Editor","notepad").toString();
 | 
					  m_editorCommand=settings.value("Editor","notepad").toString();
 | 
				
			||||||
  m_dxccPfx=settings.value("DXCCpfx","").toString();
 | 
					  m_dxccPfx=settings.value("DXCCpfx","").toString();
 | 
				
			||||||
  m_timeout=settings.value("Timeout",20).toInt();
 | 
					  m_timeout=settings.value("Timeout",20).toInt();
 | 
				
			||||||
  txPower=settings.value("TxPower",100).toInt();
 | 
					 | 
				
			||||||
  iqAmp=settings.value("IQamp",0).toInt();
 | 
					  iqAmp=settings.value("IQamp",0).toInt();
 | 
				
			||||||
  iqPhase=settings.value("IQphase",0).toInt();
 | 
					  iqPhase=settings.value("IQphase",0).toInt();
 | 
				
			||||||
  m_applyIQcal=settings.value("ApplyIQcal",0).toInt();
 | 
					  m_applyIQcal=settings.value("ApplyIQcal",0).toInt();
 | 
				
			||||||
@ -409,7 +376,6 @@ void MainWindow::readSettings()
 | 
				
			|||||||
  m_fs96000 = settings.value("FSam96000",true).toBool();
 | 
					  m_fs96000 = settings.value("FSam96000",true).toBool();
 | 
				
			||||||
  m_nDevIn = settings.value("SoundInIndex", 0).toInt();
 | 
					  m_nDevIn = settings.value("SoundInIndex", 0).toInt();
 | 
				
			||||||
  m_paInDevice = settings.value("paInDevice",0).toInt();
 | 
					  m_paInDevice = settings.value("paInDevice",0).toInt();
 | 
				
			||||||
  m_nDevOut = settings.value("SoundOutIndex", 0).toInt();
 | 
					 | 
				
			||||||
  m_paOutDevice = settings.value("paOutDevice",0).toInt();
 | 
					  m_paOutDevice = settings.value("paOutDevice",0).toInt();
 | 
				
			||||||
  m_IQswap = settings.value("IQswap",false).toBool();
 | 
					  m_IQswap = settings.value("IQswap",false).toBool();
 | 
				
			||||||
  m_dB = settings.value("Scale_dB",0).toInt();
 | 
					  m_dB = settings.value("Scale_dB",0).toInt();
 | 
				
			||||||
@ -431,7 +397,6 @@ void MainWindow::readSettings()
 | 
				
			|||||||
  if(m_modeJT65==3) ui->actionJT65C->setChecked(true);
 | 
					  if(m_modeJT65==3) ui->actionJT65C->setChecked(true);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  m_modeQ65=settings.value("nModeQ65",2).toInt();
 | 
					  m_modeQ65=settings.value("nModeQ65",2).toInt();
 | 
				
			||||||
  m_modeTx=settings.value("TxMode","JT65").toString();
 | 
					 | 
				
			||||||
  if(m_modeQ65==0) ui->actionNoQ65->setChecked(true);
 | 
					  if(m_modeQ65==0) ui->actionNoQ65->setChecked(true);
 | 
				
			||||||
  if(m_modeQ65==1) ui->actionQ65A->setChecked(true);
 | 
					  if(m_modeQ65==1) ui->actionQ65A->setChecked(true);
 | 
				
			||||||
  if(m_modeQ65==2) ui->actionQ65B->setChecked(true);
 | 
					  if(m_modeQ65==2) ui->actionQ65B->setChecked(true);
 | 
				
			||||||
@ -446,7 +411,6 @@ void MainWindow::readSettings()
 | 
				
			|||||||
  m_onlyEME=settings.value("NEME",false).toBool();
 | 
					  m_onlyEME=settings.value("NEME",false).toBool();
 | 
				
			||||||
  ui->actionOnly_EME_calls->setChecked(m_onlyEME);
 | 
					  ui->actionOnly_EME_calls->setChecked(m_onlyEME);
 | 
				
			||||||
  m_kb8rq=settings.value("KB8RQ",false).toBool();
 | 
					  m_kb8rq=settings.value("KB8RQ",false).toBool();
 | 
				
			||||||
  ui->actionF4_sets_Tx6->setChecked(m_kb8rq);
 | 
					 | 
				
			||||||
  m_NB=settings.value("NB",false).toBool();
 | 
					  m_NB=settings.value("NB",false).toBool();
 | 
				
			||||||
  ui->NBcheckBox->setChecked(m_NB);
 | 
					  ui->NBcheckBox->setChecked(m_NB);
 | 
				
			||||||
  ui->sbMaxDrift->setValue(settings.value("MaxDrift",0).toInt());
 | 
					  ui->sbMaxDrift->setValue(settings.value("MaxDrift",0).toInt());
 | 
				
			||||||
@ -457,9 +421,7 @@ void MainWindow::readSettings()
 | 
				
			|||||||
  m_phasex=settings.value("PhaseX",0.0).toFloat();
 | 
					  m_phasex=settings.value("PhaseX",0.0).toFloat();
 | 
				
			||||||
  m_phasey=settings.value("PhaseY",0.0).toFloat();
 | 
					  m_phasey=settings.value("PhaseY",0.0).toFloat();
 | 
				
			||||||
  m_mult570=settings.value("Mult570",2).toInt();
 | 
					  m_mult570=settings.value("Mult570",2).toInt();
 | 
				
			||||||
  m_mult570Tx=settings.value("Mult570Tx",1).toInt();
 | 
					 | 
				
			||||||
  m_cal570=settings.value("Cal570",0.0).toDouble();
 | 
					  m_cal570=settings.value("Cal570",0.0).toDouble();
 | 
				
			||||||
  m_TxOffset=settings.value("TxOffset",130.9).toDouble();
 | 
					 | 
				
			||||||
  m_colors=settings.value("Colors","000066ff0000ffff00969696646464").toString();
 | 
					  m_colors=settings.value("Colors","000066ff0000ffff00969696646464").toString();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  if(!ui->actionLinrad->isChecked() && !ui->actionCuteSDR->isChecked() &&
 | 
					  if(!ui->actionLinrad->isChecked() && !ui->actionCuteSDR->isChecked() &&
 | 
				
			||||||
@ -632,7 +594,6 @@ void MainWindow::on_actionDeviceSetup_triggered()               //Setup Dialog
 | 
				
			|||||||
  dlg.m_myCall=m_myCall;
 | 
					  dlg.m_myCall=m_myCall;
 | 
				
			||||||
  dlg.m_myGrid=m_myGrid;
 | 
					  dlg.m_myGrid=m_myGrid;
 | 
				
			||||||
  dlg.m_idInt=m_idInt;
 | 
					  dlg.m_idInt=m_idInt;
 | 
				
			||||||
  dlg.m_pttPort=m_pttPort;
 | 
					 | 
				
			||||||
  dlg.m_astroFont=m_astroFont;
 | 
					  dlg.m_astroFont=m_astroFont;
 | 
				
			||||||
  dlg.m_xpol=m_xpol;
 | 
					  dlg.m_xpol=m_xpol;
 | 
				
			||||||
  dlg.m_xpolx=m_xpolx;
 | 
					  dlg.m_xpolx=m_xpolx;
 | 
				
			||||||
@ -654,9 +615,7 @@ void MainWindow::on_actionDeviceSetup_triggered()               //Setup Dialog
 | 
				
			|||||||
  dlg.m_initIQplus=m_initIQplus;
 | 
					  dlg.m_initIQplus=m_initIQplus;
 | 
				
			||||||
  dlg.m_bIQxt=m_bIQxt;
 | 
					  dlg.m_bIQxt=m_bIQxt;
 | 
				
			||||||
  dlg.m_cal570=m_cal570;
 | 
					  dlg.m_cal570=m_cal570;
 | 
				
			||||||
  dlg.m_TxOffset=m_TxOffset;
 | 
					 | 
				
			||||||
  dlg.m_mult570=m_mult570;
 | 
					  dlg.m_mult570=m_mult570;
 | 
				
			||||||
  dlg.m_mult570Tx=m_mult570Tx;
 | 
					 | 
				
			||||||
  dlg.m_colors=m_colors;
 | 
					  dlg.m_colors=m_colors;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  dlg.initDlg();
 | 
					  dlg.initDlg();
 | 
				
			||||||
@ -664,7 +623,6 @@ void MainWindow::on_actionDeviceSetup_triggered()               //Setup Dialog
 | 
				
			|||||||
    m_myCall=dlg.m_myCall;
 | 
					    m_myCall=dlg.m_myCall;
 | 
				
			||||||
    m_myGrid=dlg.m_myGrid;
 | 
					    m_myGrid=dlg.m_myGrid;
 | 
				
			||||||
    m_idInt=dlg.m_idInt;
 | 
					    m_idInt=dlg.m_idInt;
 | 
				
			||||||
    m_pttPort=dlg.m_pttPort;
 | 
					 | 
				
			||||||
    m_astroFont=dlg.m_astroFont;
 | 
					    m_astroFont=dlg.m_astroFont;
 | 
				
			||||||
    if(m_astro_window && m_astro_window->isVisible()) m_astro_window->setFontSize(m_astroFont);
 | 
					    if(m_astro_window && m_astro_window->isVisible()) m_astro_window->setFontSize(m_astroFont);
 | 
				
			||||||
    m_xpol=dlg.m_xpol;
 | 
					    m_xpol=dlg.m_xpol;
 | 
				
			||||||
@ -692,10 +650,7 @@ void MainWindow::on_actionDeviceSetup_triggered()               //Setup Dialog
 | 
				
			|||||||
    m_bIQxt=dlg.m_bIQxt;
 | 
					    m_bIQxt=dlg.m_bIQxt;
 | 
				
			||||||
    m_colors=dlg.m_colors;
 | 
					    m_colors=dlg.m_colors;
 | 
				
			||||||
    m_cal570=dlg.m_cal570;
 | 
					    m_cal570=dlg.m_cal570;
 | 
				
			||||||
    m_TxOffset=dlg.m_TxOffset;
 | 
					 | 
				
			||||||
    m_mult570Tx=dlg.m_mult570Tx;
 | 
					 | 
				
			||||||
    m_wide_graph_window->m_mult570=m_mult570;
 | 
					    m_wide_graph_window->m_mult570=m_mult570;
 | 
				
			||||||
    m_wide_graph_window->m_mult570Tx=m_mult570Tx;
 | 
					 | 
				
			||||||
    m_wide_graph_window->m_cal570=m_cal570;
 | 
					    m_wide_graph_window->m_cal570=m_cal570;
 | 
				
			||||||
    soundInThread.setSwapIQ(m_IQswap);
 | 
					    soundInThread.setSwapIQ(m_IQswap);
 | 
				
			||||||
    soundInThread.setScale(m_dB);
 | 
					    soundInThread.setScale(m_dB);
 | 
				
			||||||
@ -712,13 +667,6 @@ void MainWindow::on_actionDeviceSetup_triggered()               //Setup Dialog
 | 
				
			|||||||
      soundInThread.setInputDevice(m_paInDevice);
 | 
					      soundInThread.setInputDevice(m_paInDevice);
 | 
				
			||||||
      soundInThread.start(QThread::HighestPriority);
 | 
					      soundInThread.start(QThread::HighestPriority);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					 | 
				
			||||||
    if(dlg.m_restartSoundOut) {
 | 
					 | 
				
			||||||
      soundOutThread.quitExecution=true;
 | 
					 | 
				
			||||||
      soundOutThread.wait(1000);
 | 
					 | 
				
			||||||
      soundOutThread.setOutputDevice(m_paOutDevice);
 | 
					 | 
				
			||||||
//      soundOutThread.start(QThread::HighPriority);
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -758,9 +706,6 @@ void MainWindow::keyPressEvent( QKeyEvent *e )                //keyPressEvent
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
  switch(e->key())
 | 
					  switch(e->key())
 | 
				
			||||||
  {
 | 
					  {
 | 
				
			||||||
  case Qt::Key_F3:
 | 
					 | 
				
			||||||
    m_txMute=!m_txMute;
 | 
					 | 
				
			||||||
    break;
 | 
					 | 
				
			||||||
  case Qt::Key_F4:
 | 
					  case Qt::Key_F4:
 | 
				
			||||||
    ui->dxCallEntry->setText("");
 | 
					    ui->dxCallEntry->setText("");
 | 
				
			||||||
    ui->dxGridEntry->setText("");
 | 
					    ui->dxGridEntry->setText("");
 | 
				
			||||||
@ -1328,45 +1273,18 @@ void MainWindow::decodeBusy(bool b)                             //decodeBusy()
 | 
				
			|||||||
//------------------------------------------------------------- //guiUpdate()
 | 
					//------------------------------------------------------------- //guiUpdate()
 | 
				
			||||||
void MainWindow::guiUpdate()
 | 
					void MainWindow::guiUpdate()
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
  static int iptt0=0;
 | 
					 | 
				
			||||||
  static int iptt=0;
 | 
					 | 
				
			||||||
  static bool btxok0=false;
 | 
					 | 
				
			||||||
  static bool bTune0=false;
 | 
					 | 
				
			||||||
  static bool bMonitoring0=false;
 | 
					 | 
				
			||||||
  static int nc0=1;
 | 
					 | 
				
			||||||
  static int nc1=1;
 | 
					 | 
				
			||||||
  static char msgsent[23];
 | 
					 | 
				
			||||||
  static int nsendingsh=0;
 | 
					 | 
				
			||||||
  int khsym=0;
 | 
					  int khsym=0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  double tx1=0.0;
 | 
					 | 
				
			||||||
  double tx2=126.0*4096.0/11025.0 + 1.8;
 | 
					 | 
				
			||||||
  if(m_modeTx=="Q65") tx2=85.0*7200.0/12000.0 + 1.8;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  if(!m_txFirst) {
 | 
					 | 
				
			||||||
    tx1 += m_TRperiod;
 | 
					 | 
				
			||||||
    tx2 += m_TRperiod;
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
  qint64 ms = QDateTime::currentMSecsSinceEpoch() % 86400000;
 | 
					  qint64 ms = QDateTime::currentMSecsSinceEpoch() % 86400000;
 | 
				
			||||||
  int nsec=ms/1000;
 | 
					  int nsec=ms/1000;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  if(bTune0 and !bTune) {
 | 
					  /*
 | 
				
			||||||
    btxok=false;
 | 
					 | 
				
			||||||
    m_monitoring=bMonitoring0;
 | 
					 | 
				
			||||||
    soundInThread.setMonitoring(m_monitoring);
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
  if(bTune and !bTune0) bMonitoring0=m_monitoring;
 | 
					 | 
				
			||||||
  bTune0=bTune;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
// If PTT was just raised, start a countdown for raising TxOK:
 | 
					 | 
				
			||||||
  if(iptt==1 && iptt0==0) nc1=-9;    // TxDelay = 0.8 s
 | 
					 | 
				
			||||||
  if(nc1 <= 0) nc1++;
 | 
					  if(nc1 <= 0) nc1++;
 | 
				
			||||||
  if(nc1 == 0) {
 | 
					  if(nc1 == 0) {
 | 
				
			||||||
    xSignalMeter->setValue(0);
 | 
					    xSignalMeter->setValue(0);
 | 
				
			||||||
    ySignalMeter->setValue(0);
 | 
					    ySignalMeter->setValue(0);
 | 
				
			||||||
    m_monitoring=false;
 | 
					    m_monitoring=false;
 | 
				
			||||||
    soundInThread.setMonitoring(false);
 | 
					    soundInThread.setMonitoring(false);
 | 
				
			||||||
    btxok=true;
 | 
					 | 
				
			||||||
    m_transmitting=true;
 | 
					    m_transmitting=true;
 | 
				
			||||||
    m_wide_graph_window->enableSetRxHardware(false);
 | 
					    m_wide_graph_window->enableSetRxHardware(false);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -1385,30 +1303,7 @@ void MainWindow::guiUpdate()
 | 
				
			|||||||
      ;
 | 
					      ;
 | 
				
			||||||
    f.close();
 | 
					    f.close();
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					*/
 | 
				
			||||||
// If btxok was just lowered, start a countdown for lowering PTT
 | 
					 | 
				
			||||||
  if(!btxok && btxok0 && iptt==1) nc0=-11;  //RxDelay = 1.0 s
 | 
					 | 
				
			||||||
  btxok0=btxok;
 | 
					 | 
				
			||||||
  if(nc0 <= 0) nc0++;
 | 
					 | 
				
			||||||
  if(nc0 == 0) {
 | 
					 | 
				
			||||||
    if(m_bIQxt) m_wide_graph_window->rx570();     // Set Si570 back to Rx Freq
 | 
					 | 
				
			||||||
    int itx=0;
 | 
					 | 
				
			||||||
    ptt_(&m_pttPort,&itx,&iptt);       // Lower PTT
 | 
					 | 
				
			||||||
    if(!m_txMute) {
 | 
					 | 
				
			||||||
      soundOutThread.quitExecution=true;\
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
    m_transmitting=false;
 | 
					 | 
				
			||||||
    m_wide_graph_window->enableSetRxHardware(true);
 | 
					 | 
				
			||||||
    if(m_auto) {
 | 
					 | 
				
			||||||
      m_monitoring=true;
 | 
					 | 
				
			||||||
      soundInThread.setMonitoring(m_monitoring);
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  if(iptt == 0 && !btxok) {
 | 
					 | 
				
			||||||
    // sending=""
 | 
					 | 
				
			||||||
    // nsendingsh=0
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  if(m_monitoring) {
 | 
					  if(m_monitoring) {
 | 
				
			||||||
    ui->monitorButton->setStyleSheet(m_pbmonitor_style);
 | 
					    ui->monitorButton->setStyleSheet(m_pbmonitor_style);
 | 
				
			||||||
@ -1427,7 +1322,7 @@ void MainWindow::guiUpdate()
 | 
				
			|||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  if(nsec != m_sec0) {                                     //Once per second
 | 
					  if(nsec != m_sec0) {                                     //Once per second
 | 
				
			||||||
//    qDebug() << "AAA" << nsec%60 << m_mode65 << m_modeQ65 << m_modeTx;
 | 
					//    qDebug() << "AAA" << nsec%60 << m_modeQ65;
 | 
				
			||||||
    soundInThread.setForceCenterFreqMHz(m_wide_graph_window->m_dForceCenterFreq);
 | 
					    soundInThread.setForceCenterFreqMHz(m_wide_graph_window->m_dForceCenterFreq);
 | 
				
			||||||
    soundInThread.setForceCenterFreqBool(m_wide_graph_window->m_bForceCenterFreq);
 | 
					    soundInThread.setForceCenterFreqBool(m_wide_graph_window->m_bForceCenterFreq);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -1437,18 +1332,7 @@ void MainWindow::guiUpdate()
 | 
				
			|||||||
      lab4->setStyleSheet("");
 | 
					      lab4->setStyleSheet("");
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if(m_transmitting) {
 | 
					    if(m_monitoring) {
 | 
				
			||||||
      if(nsendingsh==1) {
 | 
					 | 
				
			||||||
        lab1->setStyleSheet("QLabel{background-color: #66ffff}");
 | 
					 | 
				
			||||||
      } else if(nsendingsh==-1) {
 | 
					 | 
				
			||||||
        lab1->setStyleSheet("QLabel{background-color: #ffccff}");
 | 
					 | 
				
			||||||
      } else {
 | 
					 | 
				
			||||||
        lab1->setStyleSheet("QLabel{background-color: #ffff33}");
 | 
					 | 
				
			||||||
      }
 | 
					 | 
				
			||||||
      char s[37];
 | 
					 | 
				
			||||||
      sprintf(s,"Tx: %s",msgsent);
 | 
					 | 
				
			||||||
      lab1->setText(s);
 | 
					 | 
				
			||||||
    } else if(m_monitoring) {
 | 
					 | 
				
			||||||
      lab1->setStyleSheet("QLabel{background-color: #00ff00}");
 | 
					      lab1->setStyleSheet("QLabel{background-color: #00ff00}");
 | 
				
			||||||
      m_nrx=soundInThread.nrx();
 | 
					      m_nrx=soundInThread.nrx();
 | 
				
			||||||
      khsym=soundInThread.mhsym();
 | 
					      khsym=soundInThread.mhsym();
 | 
				
			||||||
@ -1489,7 +1373,6 @@ void MainWindow::guiUpdate()
 | 
				
			|||||||
    m_hsym0=khsym;
 | 
					    m_hsym0=khsym;
 | 
				
			||||||
    m_sec0=nsec;
 | 
					    m_sec0=nsec;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
  iptt0=iptt;
 | 
					 | 
				
			||||||
  bIQxt=m_bIQxt;
 | 
					  bIQxt=m_bIQxt;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -1508,11 +1391,6 @@ void MainWindow::ba2msg(QByteArray ba, char message[])             //ba2msg()
 | 
				
			|||||||
  message[22] = '\0';
 | 
					  message[22] = '\0';
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void MainWindow::set_ntx(int n)                                   //set_ntx()
 | 
					 | 
				
			||||||
{
 | 
					 | 
				
			||||||
  m_ntx=n;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
void MainWindow::lookup()                                       //lookup()
 | 
					void MainWindow::lookup()                                       //lookup()
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
  QString hiscall=ui->dxCallEntry->text().toUpper().trimmed();
 | 
					  QString hiscall=ui->dxCallEntry->text().toUpper().trimmed();
 | 
				
			||||||
@ -1646,6 +1524,7 @@ void MainWindow::on_addButton_clicked()                       //Add button
 | 
				
			|||||||
  }
 | 
					  }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					/*
 | 
				
			||||||
void MainWindow::msgtype(QString t, QLineEdit* tx)                //msgtype()
 | 
					void MainWindow::msgtype(QString t, QLineEdit* tx)                //msgtype()
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
//  if(t.length()<1) return 0;
 | 
					//  if(t.length()<1) return 0;
 | 
				
			||||||
@ -1684,6 +1563,7 @@ void MainWindow::msgtype(QString t, QLineEdit* tx)                //msgtype()
 | 
				
			|||||||
    tx->setText(t);
 | 
					    tx->setText(t);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					*/
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void MainWindow::on_dxCallEntry_textChanged(const QString &t) //dxCall changed
 | 
					void MainWindow::on_dxCallEntry_textChanged(const QString &t) //dxCall changed
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
 | 
				
			|||||||
@ -10,7 +10,6 @@
 | 
				
			|||||||
#include <QProcess>
 | 
					#include <QProcess>
 | 
				
			||||||
#include "getfile.h"
 | 
					#include "getfile.h"
 | 
				
			||||||
#include "soundin.h"
 | 
					#include "soundin.h"
 | 
				
			||||||
#include "soundout.h"
 | 
					 | 
				
			||||||
#include "signalmeter.h"
 | 
					#include "signalmeter.h"
 | 
				
			||||||
#include "commons.h"
 | 
					#include "commons.h"
 | 
				
			||||||
#include "sleep.h"
 | 
					#include "sleep.h"
 | 
				
			||||||
@ -78,7 +77,6 @@ private slots:
 | 
				
			|||||||
  void decode();
 | 
					  void decode();
 | 
				
			||||||
  void decodeBusy(bool b);
 | 
					  void decodeBusy(bool b);
 | 
				
			||||||
  void on_EraseButton_clicked();
 | 
					  void on_EraseButton_clicked();
 | 
				
			||||||
  void set_ntx(int n);
 | 
					 | 
				
			||||||
  void on_lookupButton_clicked();
 | 
					  void on_lookupButton_clicked();
 | 
				
			||||||
  void on_addButton_clicked();
 | 
					  void on_addButton_clicked();
 | 
				
			||||||
  void on_dxCallEntry_textChanged(const QString &arg1);
 | 
					  void on_dxCallEntry_textChanged(const QString &arg1);
 | 
				
			||||||
@ -111,8 +109,6 @@ private:
 | 
				
			|||||||
  qint32  m_DF;
 | 
					  qint32  m_DF;
 | 
				
			||||||
  qint32  m_tol;
 | 
					  qint32  m_tol;
 | 
				
			||||||
  qint32  m_QSOfreq0;
 | 
					  qint32  m_QSOfreq0;
 | 
				
			||||||
  qint32  m_ntx;
 | 
					 | 
				
			||||||
  qint32  m_pttPort;
 | 
					 | 
				
			||||||
  qint32  m_astroFont;
 | 
					  qint32  m_astroFont;
 | 
				
			||||||
  qint32  m_timeout;
 | 
					  qint32  m_timeout;
 | 
				
			||||||
  qint32  m_dPhi;
 | 
					  qint32  m_dPhi;
 | 
				
			||||||
@ -225,7 +221,6 @@ private:
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  SoundInThread soundInThread;             //Instantiate the audio threads
 | 
					  SoundInThread soundInThread;             //Instantiate the audio threads
 | 
				
			||||||
  SoundOutThread soundOutThread;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  //---------------------------------------------------- private functions
 | 
					  //---------------------------------------------------- private functions
 | 
				
			||||||
  void readSettings();
 | 
					  void readSettings();
 | 
				
			||||||
@ -266,8 +261,6 @@ extern "C" {
 | 
				
			|||||||
              char* msgsent, short iwave[], int* nwave,
 | 
					              char* msgsent, short iwave[], int* nwave,
 | 
				
			||||||
              int len1, int len2);
 | 
					              int len1, int len2);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  int ptt_(int* nport, int* itx, int* iptt);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  void astrosub00_ (int* nyear, int* month, int* nday, double* uth, int* nfreq,
 | 
					  void astrosub00_ (int* nyear, int* month, int* nday, double* uth, int* nfreq,
 | 
				
			||||||
                    const char* mygrid, int* ndop00, int len1);
 | 
					                    const char* mygrid, int* ndop00, int len1);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
				
			|||||||
@ -30,19 +30,19 @@ DEFINES = UNIX
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
SOURCES += main.cpp mainwindow.cpp plotter.cpp about.cpp \
 | 
					SOURCES += main.cpp mainwindow.cpp plotter.cpp about.cpp \
 | 
				
			||||||
    soundin.cpp soundout.cpp devsetup.cpp \
 | 
					    soundin.cpp devsetup.cpp \
 | 
				
			||||||
    widegraph.cpp getfile.cpp \
 | 
					    widegraph.cpp getfile.cpp \
 | 
				
			||||||
    astro.cpp displaytext.cpp getdev.cpp \
 | 
					    astro.cpp displaytext.cpp getdev.cpp \
 | 
				
			||||||
    txtune.cpp meterwidget.cpp signalmeter.cpp
 | 
					    meterwidget.cpp signalmeter.cpp
 | 
				
			||||||
 | 
					
 | 
				
			||||||
win32 {
 | 
					win32 {
 | 
				
			||||||
SOURCES += killbyname.cpp     set570.cpp
 | 
					SOURCES += killbyname.cpp     set570.cpp
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
HEADERS  += mainwindow.h plotter.h soundin.h soundout.h \
 | 
					HEADERS  += mainwindow.h plotter.h soundin.h \
 | 
				
			||||||
            about.h devsetup.h widegraph.h getfile.h \
 | 
					            about.h devsetup.h widegraph.h getfile.h \
 | 
				
			||||||
            commons.h sleep.h astro.h displaytext.h \
 | 
					            commons.h sleep.h astro.h displaytext.h \
 | 
				
			||||||
            txtune.h meterwidget.h signalmeter.h
 | 
					            meterwidget.h signalmeter.h
 | 
				
			||||||
 | 
					
 | 
				
			||||||
FORMS    += mainwindow.ui about.ui devsetup.ui widegraph.ui \
 | 
					FORMS    += mainwindow.ui about.ui devsetup.ui widegraph.ui \
 | 
				
			||||||
    astro.ui txtune.ui
 | 
					    astro.ui txtune.ui
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user