| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							| 
									
										
										
										
											2023-11-18 10:07:41 +01:00
										 |  |  | // Copyright (C) 2018-2020, 2022 Edouard Griffiths, F4EXB <f4exb06@gmail.com>    //
 | 
					
						
							|  |  |  | // Copyright (C) 2022-2023 Jon Beniston, M7RCE <jon@beniston.com>                //
 | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // 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                  //
 | 
					
						
							| 
									
										
										
										
											2019-04-11 06:57:41 +02:00
										 |  |  | // (at your option) any later version.                                           //
 | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // 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/>.          //
 | 
					
						
							|  |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <QDebug>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <QTime>
 | 
					
						
							|  |  |  | #include <QDateTime>
 | 
					
						
							|  |  |  | #include <QString>
 | 
					
						
							|  |  |  | #include <QMessageBox>
 | 
					
						
							| 
									
										
										
										
											2020-04-01 23:17:26 +02:00
										 |  |  | #include <QFileDialog>
 | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "ui_testsourcegui.h"
 | 
					
						
							|  |  |  | #include "gui/colormapper.h"
 | 
					
						
							|  |  |  | #include "gui/glspectrum.h"
 | 
					
						
							| 
									
										
										
										
											2018-12-17 18:39:09 +01:00
										 |  |  | #include "gui/basicdevicesettingsdialog.h"
 | 
					
						
							| 
									
										
										
										
											2022-12-20 10:31:15 +00:00
										 |  |  | #include "gui/dialpopup.h"
 | 
					
						
							|  |  |  | #include "gui/dialogpositioner.h"
 | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  | #include "dsp/dspcommands.h"
 | 
					
						
							|  |  |  | #include "util/db.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "testsourcegui.h"
 | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  | #include "device/deviceapi.h"
 | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  | #include "device/deviceuiset.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TestSourceGui::TestSourceGui(DeviceUISet *deviceUISet, QWidget* parent) : | 
					
						
							| 
									
										
										
										
											2020-10-05 19:23:13 +02:00
										 |  |  |     DeviceGUI(parent), | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  |     ui(new Ui::TestSourceGui), | 
					
						
							|  |  |  |     m_settings(), | 
					
						
							|  |  |  |     m_doApplySettings(true), | 
					
						
							|  |  |  |     m_forceSettings(true), | 
					
						
							|  |  |  |     m_sampleSource(0), | 
					
						
							|  |  |  |     m_tickCount(0), | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  |     m_lastEngineState(DeviceAPI::StNotStarted) | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     qDebug("TestSourceGui::TestSourceGui"); | 
					
						
							| 
									
										
										
										
											2022-05-13 22:24:48 +02:00
										 |  |  |     m_deviceUISet = deviceUISet; | 
					
						
							| 
									
										
										
										
											2022-04-07 16:32:03 +02:00
										 |  |  |     setAttribute(Qt::WA_DeleteOnClose, true); | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  |     m_sampleSource = m_deviceUISet->m_deviceAPI->getSampleSource(); | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-07 16:32:03 +02:00
										 |  |  |     ui->setupUi(getContents()); | 
					
						
							| 
									
										
										
										
											2022-11-09 15:53:44 +00:00
										 |  |  |     sizeToContents(); | 
					
						
							| 
									
										
										
										
											2022-04-24 02:13:18 +02:00
										 |  |  |     getContents()->setStyleSheet("#TestSourceGui { background-color: rgb(64, 64, 64); }"); | 
					
						
							| 
									
										
										
										
											2022-04-07 16:32:03 +02:00
										 |  |  |     m_helpURL = "plugins/samplesource/testsource/readme.md"; | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  |     ui->centerFrequency->setColorMapper(ColorMapper(ColorMapper::GrayGold)); | 
					
						
							| 
									
										
										
										
											2022-10-15 03:04:29 +02:00
										 |  |  |     ui->centerFrequency->setValueRange(9, 0, 999999999); | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  |     ui->sampleRate->setColorMapper(ColorMapper(ColorMapper::GrayGreenYellow)); | 
					
						
							|  |  |  |     ui->sampleRate->setValueRange(7, 48000, 9999999); | 
					
						
							|  |  |  |     ui->frequencyShift->setColorMapper(ColorMapper(ColorMapper::GrayGold)); | 
					
						
							|  |  |  |     ui->frequencyShift->setValueRange(false, 7, -9999999, 9999999); | 
					
						
							| 
									
										
										
										
											2018-02-11 13:48:17 +01:00
										 |  |  |     ui->frequencyShiftLabel->setText(QString("%1").arg(QChar(0x94, 0x03))); | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     displaySettings(); | 
					
						
							| 
									
										
										
										
											2022-04-07 16:32:03 +02:00
										 |  |  |     makeUIConnections(); | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     connect(&m_updateTimer, SIGNAL(timeout()), this, SLOT(updateHardware())); | 
					
						
							|  |  |  |     connect(&m_statusTimer, SIGNAL(timeout()), this, SLOT(updateStatus())); | 
					
						
							|  |  |  |     m_statusTimer.start(500); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     connect(&m_inputMessageQueue, SIGNAL(messageEnqueued()), this, SLOT(handleInputMessages()), Qt::QueuedConnection); | 
					
						
							| 
									
										
										
										
											2018-05-25 19:28:57 +02:00
										 |  |  |     m_sampleSource->setMessageQueueToGUI(&m_inputMessageQueue); | 
					
						
							| 
									
										
										
										
											2018-12-17 18:39:09 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-17 01:31:50 +02:00
										 |  |  |     connect(this, SIGNAL(customContextMenuRequested(const QPoint &)), this, SLOT(openDeviceSettingsDialog(const QPoint &))); | 
					
						
							| 
									
										
										
										
											2022-12-20 10:31:15 +00:00
										 |  |  |     DialPopup::addPopupsToChildDials(this); | 
					
						
							| 
									
										
										
										
											2023-11-13 20:51:03 +00:00
										 |  |  |     m_resizer.enableChildMouseTracking(); | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TestSourceGui::~TestSourceGui() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2022-10-05 15:40:09 +01:00
										 |  |  |     m_statusTimer.stop(); | 
					
						
							|  |  |  |     m_updateTimer.stop(); | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  |     delete ui; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void TestSourceGui::destroy() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     delete this; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void TestSourceGui::resetToDefaults() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_settings.resetToDefaults(); | 
					
						
							|  |  |  |     displaySettings(); | 
					
						
							| 
									
										
										
										
											2022-10-29 19:18:45 +02:00
										 |  |  |     m_forceSettings = true; | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  |     sendSettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | QByteArray TestSourceGui::serialize() const | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return m_settings.serialize(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool TestSourceGui::deserialize(const QByteArray& data) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2022-10-29 19:18:45 +02:00
										 |  |  |     if (m_settings.deserialize(data)) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  |         displaySettings(); | 
					
						
							|  |  |  |         m_forceSettings = true; | 
					
						
							|  |  |  |         sendSettings(); | 
					
						
							|  |  |  |         return true; | 
					
						
							| 
									
										
										
										
											2022-10-29 19:18:45 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  |         resetToDefaults(); | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void TestSourceGui::on_startStop_toggled(bool checked) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (m_doApplySettings) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         TestSourceInput::MsgStartStop *message = TestSourceInput::MsgStartStop::create(checked); | 
					
						
							|  |  |  |         m_sampleSource->getInputMessageQueue()->push(message); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void TestSourceGui::on_centerFrequency_changed(quint64 value) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_settings.m_centerFrequency = value * 1000; | 
					
						
							| 
									
										
										
										
											2022-10-29 19:18:45 +02:00
										 |  |  |     m_settingsKeys.append("centerFrequency"); | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  |     sendSettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-04 18:46:22 +01:00
										 |  |  | void TestSourceGui::on_autoCorr_currentIndexChanged(int index) | 
					
						
							| 
									
										
										
										
											2018-01-14 11:58:36 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-02-04 22:52:31 +01:00
										 |  |  |     if ((index < 0) || (index > TestSourceSettings::AutoCorrLast)) { | 
					
						
							| 
									
										
										
										
											2018-02-04 18:46:22 +01:00
										 |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-01-14 11:58:36 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-04 18:46:22 +01:00
										 |  |  |     m_settings.m_autoCorrOptions = (TestSourceSettings::AutoCorrOptions) index; | 
					
						
							| 
									
										
										
										
											2022-10-29 19:18:45 +02:00
										 |  |  |     m_settingsKeys.append("autoCorrOptions"); | 
					
						
							| 
									
										
										
										
											2018-01-14 11:58:36 +01:00
										 |  |  |     sendSettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  | void TestSourceGui::on_frequencyShift_changed(qint64 value) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_settings.m_frequencyShift = value; | 
					
						
							| 
									
										
										
										
											2022-10-29 19:18:45 +02:00
										 |  |  |     m_settingsKeys.append("frequencyShift"); | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  |     sendSettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void TestSourceGui::on_decimation_currentIndexChanged(int index) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if ((index < 0) || (index > 6)) { | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     m_settings.m_log2Decim = index; | 
					
						
							| 
									
										
										
										
											2022-10-29 19:18:45 +02:00
										 |  |  |     m_settingsKeys.append("log2Decim"); | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  |     sendSettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void TestSourceGui::on_fcPos_currentIndexChanged(int index) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if ((index < 0) || (index > 2)) { | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     m_settings.m_fcPos = (TestSourceSettings::fcPos_t) index; | 
					
						
							| 
									
										
										
										
											2022-10-29 19:18:45 +02:00
										 |  |  |     m_settingsKeys.append("fcPos"); | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  |     sendSettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void TestSourceGui::on_sampleRate_changed(quint64 value) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     updateFrequencyShiftLimit(); | 
					
						
							|  |  |  |     m_settings.m_frequencyShift = ui->frequencyShift->getValueNew(); | 
					
						
							|  |  |  |     m_settings.m_sampleRate = value; | 
					
						
							| 
									
										
										
										
											2022-10-29 19:18:45 +02:00
										 |  |  |     m_settingsKeys.append("frequencyShift"); | 
					
						
							|  |  |  |     m_settingsKeys.append("sampleRate"); | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  |     sendSettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void TestSourceGui::on_sampleSize_currentIndexChanged(int index) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if ((index < 0) || (index > 2)) { | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     updateAmpCoarseLimit(); | 
					
						
							|  |  |  |     updateAmpFineLimit(); | 
					
						
							|  |  |  |     displayAmplitude(); | 
					
						
							|  |  |  |     m_settings.m_amplitudeBits = ui->amplitudeCoarse->value() * 100 + ui->amplitudeFine->value(); | 
					
						
							|  |  |  |     m_settings.m_sampleSizeIndex = index; | 
					
						
							| 
									
										
										
										
											2022-10-29 19:18:45 +02:00
										 |  |  |     m_settingsKeys.append("amplitudeBits"); | 
					
						
							|  |  |  |     m_settingsKeys.append("sampleSizeIndex"); | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  |     sendSettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-13 08:51:14 +01:00
										 |  |  | void TestSourceGui::on_amplitudeCoarse_valueChanged(int value) | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-11-13 08:51:14 +01:00
										 |  |  |     (void) value; | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  |     updateAmpFineLimit(); | 
					
						
							|  |  |  |     displayAmplitude(); | 
					
						
							|  |  |  |     m_settings.m_amplitudeBits = ui->amplitudeCoarse->value() * 100 + ui->amplitudeFine->value(); | 
					
						
							| 
									
										
										
										
											2022-10-29 19:18:45 +02:00
										 |  |  |     m_settingsKeys.append("amplitudeBits"); | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  |     sendSettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-13 08:51:14 +01:00
										 |  |  | void TestSourceGui::on_amplitudeFine_valueChanged(int value) | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-11-13 08:51:14 +01:00
										 |  |  |     (void) value; | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  |     displayAmplitude(); | 
					
						
							|  |  |  |     m_settings.m_amplitudeBits = ui->amplitudeCoarse->value() * 100 + ui->amplitudeFine->value(); | 
					
						
							| 
									
										
										
										
											2022-10-29 19:18:45 +02:00
										 |  |  |     m_settingsKeys.append("amplitudeBits"); | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  |     sendSettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-11 13:48:17 +01:00
										 |  |  | void TestSourceGui::on_modulation_currentIndexChanged(int index) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if ((index < 0) || (index > TestSourceSettings::ModulationLast)) { | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     m_settings.m_modulation = (TestSourceSettings::Modulation) index; | 
					
						
							| 
									
										
										
										
											2022-10-29 19:18:45 +02:00
										 |  |  |     m_settingsKeys.append("modulation"); | 
					
						
							| 
									
										
										
										
											2018-02-11 13:48:17 +01:00
										 |  |  |     sendSettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void TestSourceGui::on_modulationFrequency_valueChanged(int value) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_settings.m_modulationTone = value; | 
					
						
							|  |  |  |     ui->modulationFrequencyText->setText(QString("%1").arg(m_settings.m_modulationTone / 100.0, 0, 'f', 2)); | 
					
						
							| 
									
										
										
										
											2022-10-29 19:18:45 +02:00
										 |  |  |     m_settingsKeys.append("modulationTone"); | 
					
						
							| 
									
										
										
										
											2018-02-11 13:48:17 +01:00
										 |  |  |     sendSettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void TestSourceGui::on_amModulation_valueChanged(int value) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_settings.m_amModulation = value; | 
					
						
							|  |  |  |     ui->amModulationText->setText(QString("%1").arg(m_settings.m_amModulation)); | 
					
						
							| 
									
										
										
										
											2022-10-29 19:18:45 +02:00
										 |  |  |     m_settingsKeys.append("amModulation"); | 
					
						
							| 
									
										
										
										
											2018-02-11 13:48:17 +01:00
										 |  |  |     sendSettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void TestSourceGui::on_fmDeviation_valueChanged(int value) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_settings.m_fmDeviation = value; | 
					
						
							|  |  |  |     ui->fmDeviationText->setText(QString("%1").arg(m_settings.m_fmDeviation / 10.0, 0, 'f', 1)); | 
					
						
							| 
									
										
										
										
											2022-10-29 19:18:45 +02:00
										 |  |  |     m_settingsKeys.append("fmDeviation"); | 
					
						
							| 
									
										
										
										
											2018-02-11 13:48:17 +01:00
										 |  |  |     sendSettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-14 11:58:36 +01:00
										 |  |  | void TestSourceGui::on_dcBias_valueChanged(int value) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     ui->dcBiasText->setText(QString(tr("%1 %").arg(value))); | 
					
						
							|  |  |  |     m_settings.m_dcFactor = value / 100.0f; | 
					
						
							| 
									
										
										
										
											2022-10-29 19:18:45 +02:00
										 |  |  |     m_settingsKeys.append("dcFactor"); | 
					
						
							| 
									
										
										
										
											2018-01-14 11:58:36 +01:00
										 |  |  |     sendSettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void TestSourceGui::on_iBias_valueChanged(int value) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     ui->iBiasText->setText(QString(tr("%1 %").arg(value))); | 
					
						
							|  |  |  |     m_settings.m_iFactor = value / 100.0f; | 
					
						
							| 
									
										
										
										
											2022-10-29 19:18:45 +02:00
										 |  |  |     m_settingsKeys.append("iFactor"); | 
					
						
							| 
									
										
										
										
											2018-01-14 11:58:36 +01:00
										 |  |  |     sendSettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void TestSourceGui::on_qBias_valueChanged(int value) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     ui->qBiasText->setText(QString(tr("%1 %").arg(value))); | 
					
						
							|  |  |  |     m_settings.m_qFactor = value / 100.0f; | 
					
						
							| 
									
										
										
										
											2022-10-29 19:18:45 +02:00
										 |  |  |     m_settingsKeys.append("qFactor"); | 
					
						
							| 
									
										
										
										
											2018-01-14 11:58:36 +01:00
										 |  |  |     sendSettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-31 22:34:55 +01:00
										 |  |  | void TestSourceGui::on_phaseImbalance_valueChanged(int value) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     ui->phaseImbalanceText->setText(QString(tr("%1 %").arg(value))); | 
					
						
							|  |  |  |     m_settings.m_phaseImbalance = value / 100.0f; | 
					
						
							| 
									
										
										
										
											2022-10-29 19:18:45 +02:00
										 |  |  |     m_settingsKeys.append("phaseImbalance"); | 
					
						
							| 
									
										
										
										
											2018-01-31 22:34:55 +01:00
										 |  |  |     sendSettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  | void TestSourceGui::displayAmplitude() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int amplitudeInt = ui->amplitudeCoarse->value() * 100 + ui->amplitudeFine->value(); | 
					
						
							|  |  |  |     double power; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     switch (ui->sampleSize->currentIndex()) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |     case 0: // 8 bits: 128
 | 
					
						
							|  |  |  |         power = (double) amplitudeInt*amplitudeInt / (double) (1<<14); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case 1: // 12 bits 2048
 | 
					
						
							|  |  |  |         power = (double) amplitudeInt*amplitudeInt / (double) (1<<22); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case 2: // 16 bits 32768
 | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         power = (double) amplitudeInt*amplitudeInt / (double) (1<<30); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ui->amplitudeBits->setText(QString(tr("%1 b").arg(amplitudeInt))); | 
					
						
							|  |  |  |     double powerDb = CalcDb::dbPower(power); | 
					
						
							|  |  |  |     ui->power->setText(QString(tr("%1 dB").arg(QString::number(powerDb, 'f', 1)))); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void TestSourceGui::updateAmpCoarseLimit() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     switch (ui->sampleSize->currentIndex()) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |     case 0: // 8 bits: 128
 | 
					
						
							|  |  |  |         ui->amplitudeCoarse->setMaximum(1); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case 1: // 12 bits 2048
 | 
					
						
							|  |  |  |         ui->amplitudeCoarse->setMaximum(20); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case 2: // 16 bits 32768
 | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         ui->amplitudeCoarse->setMaximum(327); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void TestSourceGui::updateAmpFineLimit() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     switch (ui->sampleSize->currentIndex()) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |     case 0: // 8 bits: 128
 | 
					
						
							|  |  |  |         if (ui->amplitudeCoarse->value() == 1) { | 
					
						
							|  |  |  |             ui->amplitudeFine->setMaximum(27); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             ui->amplitudeFine->setMaximum(99); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case 1: // 12 bits 2048
 | 
					
						
							|  |  |  |         if (ui->amplitudeCoarse->value() == 20) { | 
					
						
							|  |  |  |             ui->amplitudeFine->setMaximum(47); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             ui->amplitudeFine->setMaximum(99); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case 2: // 16 bits 32768
 | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         if (ui->amplitudeCoarse->value() == 327) { | 
					
						
							|  |  |  |             ui->amplitudeFine->setMaximum(67); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             ui->amplitudeFine->setMaximum(99); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void TestSourceGui::updateFrequencyShiftLimit() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int sampleRate = ui->sampleRate->getValueNew(); | 
					
						
							|  |  |  |     ui->frequencyShift->setValueRange(false, 7, -sampleRate, sampleRate); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void TestSourceGui::displaySettings() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     blockApplySettings(true); | 
					
						
							| 
									
										
										
										
											2018-01-18 01:09:42 +01:00
										 |  |  |     ui->sampleSize->blockSignals(true); | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     ui->centerFrequency->setValue(m_settings.m_centerFrequency / 1000); | 
					
						
							|  |  |  |     ui->decimation->setCurrentIndex(m_settings.m_log2Decim); | 
					
						
							|  |  |  |     ui->fcPos->setCurrentIndex((int) m_settings.m_fcPos); | 
					
						
							|  |  |  |     ui->sampleRate->setValue(m_settings.m_sampleRate); | 
					
						
							|  |  |  |     updateFrequencyShiftLimit(); | 
					
						
							|  |  |  |     ui->frequencyShift->setValue(m_settings.m_frequencyShift); | 
					
						
							|  |  |  |     ui->sampleSize->setCurrentIndex(m_settings.m_sampleSizeIndex); | 
					
						
							|  |  |  |     updateAmpCoarseLimit(); | 
					
						
							|  |  |  |     int amplitudeBits = m_settings.m_amplitudeBits; | 
					
						
							|  |  |  |     ui->amplitudeCoarse->setValue(amplitudeBits/100); | 
					
						
							|  |  |  |     updateAmpFineLimit(); | 
					
						
							|  |  |  |     ui->amplitudeFine->setValue(amplitudeBits%100); | 
					
						
							|  |  |  |     displayAmplitude(); | 
					
						
							| 
									
										
										
										
											2018-01-14 11:58:36 +01:00
										 |  |  |     int dcBiasPercent = roundf(m_settings.m_dcFactor * 100.0f); | 
					
						
							| 
									
										
										
										
											2018-08-06 22:46:48 +02:00
										 |  |  |     ui->dcBias->setValue((int) dcBiasPercent); | 
					
						
							| 
									
										
										
										
											2018-01-14 11:58:36 +01:00
										 |  |  |     ui->dcBiasText->setText(QString(tr("%1 %").arg(dcBiasPercent))); | 
					
						
							|  |  |  |     int iBiasPercent = roundf(m_settings.m_iFactor * 100.0f); | 
					
						
							| 
									
										
										
										
											2018-08-06 22:46:48 +02:00
										 |  |  |     ui->iBias->setValue((int) iBiasPercent); | 
					
						
							| 
									
										
										
										
											2018-01-14 11:58:36 +01:00
										 |  |  |     ui->iBiasText->setText(QString(tr("%1 %").arg(iBiasPercent))); | 
					
						
							|  |  |  |     int qBiasPercent = roundf(m_settings.m_qFactor * 100.0f); | 
					
						
							| 
									
										
										
										
											2018-08-06 22:46:48 +02:00
										 |  |  |     ui->qBias->setValue((int) qBiasPercent); | 
					
						
							| 
									
										
										
										
											2018-01-14 11:58:36 +01:00
										 |  |  |     ui->qBiasText->setText(QString(tr("%1 %").arg(qBiasPercent))); | 
					
						
							| 
									
										
										
										
											2018-08-06 22:46:48 +02:00
										 |  |  |     int phaseImbalancePercent = roundf(m_settings.m_phaseImbalance * 100.0f); | 
					
						
							|  |  |  |     ui->phaseImbalance->setValue((int) phaseImbalancePercent); | 
					
						
							|  |  |  |     ui->phaseImbalanceText->setText(QString(tr("%1 %").arg(phaseImbalancePercent))); | 
					
						
							| 
									
										
										
										
											2018-02-04 18:46:22 +01:00
										 |  |  |     ui->autoCorr->setCurrentIndex(m_settings.m_autoCorrOptions); | 
					
						
							| 
									
										
										
										
											2018-01-18 01:09:42 +01:00
										 |  |  |     ui->sampleSize->blockSignals(false); | 
					
						
							| 
									
										
										
										
											2018-02-11 13:48:17 +01:00
										 |  |  |     ui->modulation->setCurrentIndex((int) m_settings.m_modulation); | 
					
						
							|  |  |  |     ui->modulationFrequency->setValue(m_settings.m_modulationTone); | 
					
						
							|  |  |  |     ui->modulationFrequencyText->setText(QString("%1").arg(m_settings.m_modulationTone / 100.0, 0, 'f', 2)); | 
					
						
							|  |  |  |     ui->amModulation->setValue(m_settings.m_amModulation); | 
					
						
							|  |  |  |     ui->amModulationText->setText(QString("%1").arg(m_settings.m_amModulation)); | 
					
						
							|  |  |  |     ui->fmDeviation->setValue(m_settings.m_fmDeviation); | 
					
						
							|  |  |  |     ui->fmDeviationText->setText(QString("%1").arg(m_settings.m_fmDeviation / 10.0, 0, 'f', 1)); | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  |     blockApplySettings(false); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void TestSourceGui::sendSettings() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2022-10-29 19:18:45 +02:00
										 |  |  |     if (!m_updateTimer.isActive()) { | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  |         m_updateTimer.start(100); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void TestSourceGui::updateHardware() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (m_doApplySettings) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2022-10-29 19:18:45 +02:00
										 |  |  |         TestSourceInput::MsgConfigureTestSource* message = TestSourceInput::MsgConfigureTestSource::create(m_settings, m_settingsKeys, m_forceSettings); | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  |         m_sampleSource->getInputMessageQueue()->push(message); | 
					
						
							|  |  |  |         m_forceSettings = false; | 
					
						
							| 
									
										
										
										
											2022-10-29 19:18:45 +02:00
										 |  |  |         m_settingsKeys.clear(); | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  |         m_updateTimer.stop(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void TestSourceGui::updateStatus() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  |     int state = m_deviceUISet->m_deviceAPI->state(); | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if(m_lastEngineState != state) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         switch(state) | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  |             case DeviceAPI::StNotStarted: | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  |                 ui->startStop->setStyleSheet("QToolButton { background:rgb(79,79,79); }"); | 
					
						
							|  |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  |             case DeviceAPI::StIdle: | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  |                 ui->startStop->setStyleSheet("QToolButton { background-color : blue; }"); | 
					
						
							|  |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  |             case DeviceAPI::StRunning: | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  |                 ui->startStop->setStyleSheet("QToolButton { background-color : green; }"); | 
					
						
							|  |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  |             case DeviceAPI::StError: | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  |                 ui->startStop->setStyleSheet("QToolButton { background-color : red; }"); | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  |                 QMessageBox::information(this, tr("Message"), m_deviceUISet->m_deviceAPI->errorMessage()); | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  |                 break; | 
					
						
							|  |  |  |             default: | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         m_lastEngineState = state; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool TestSourceGui::handleMessage(const Message& message) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (TestSourceInput::MsgConfigureTestSource::match(message)) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         qDebug("TestSourceGui::handleMessage: MsgConfigureTestSource"); | 
					
						
							|  |  |  |         const TestSourceInput::MsgConfigureTestSource& cfg = (TestSourceInput::MsgConfigureTestSource&) message; | 
					
						
							| 
									
										
										
										
											2022-10-29 19:18:45 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (cfg.getForce()) { | 
					
						
							|  |  |  |             m_settings = cfg.getSettings(); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             m_settings.applySettings(cfg.getSettingsKeys(), cfg.getSettings()); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  |         displaySettings(); | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else if (TestSourceInput::MsgStartStop::match(message)) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         qDebug("TestSourceGui::handleMessage: MsgStartStop"); | 
					
						
							|  |  |  |         TestSourceInput::MsgStartStop& notif = (TestSourceInput::MsgStartStop&) message; | 
					
						
							|  |  |  |         blockApplySettings(true); | 
					
						
							|  |  |  |         ui->startStop->setChecked(notif.getStartStop()); | 
					
						
							|  |  |  |         blockApplySettings(false); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void TestSourceGui::handleInputMessages() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     Message* message; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     while ((message = m_inputMessageQueue.pop()) != 0) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if (DSPSignalNotification::match(*message)) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             DSPSignalNotification* notif = (DSPSignalNotification*) message; | 
					
						
							|  |  |  |             m_deviceSampleRate = notif->getSampleRate(); | 
					
						
							|  |  |  |             m_deviceCenterFrequency = notif->getCenterFrequency(); | 
					
						
							|  |  |  |             qDebug("TestSourceGui::handleInputMessages: DSPSignalNotification: SampleRate:%d, CenterFrequency:%llu", | 
					
						
							|  |  |  |                     notif->getSampleRate(), | 
					
						
							|  |  |  |                     notif->getCenterFrequency()); | 
					
						
							|  |  |  |             updateSampleRateAndFrequency(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             delete message; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             if (handleMessage(*message)) | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 delete message; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void TestSourceGui::updateSampleRateAndFrequency() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_deviceUISet->getSpectrum()->setSampleRate(m_deviceSampleRate); | 
					
						
							|  |  |  |     m_deviceUISet->getSpectrum()->setCenterFrequency(m_deviceCenterFrequency); | 
					
						
							|  |  |  |     ui->deviceRateText->setText(tr("%1k").arg((float)m_deviceSampleRate / 1000)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-17 18:39:09 +01:00
										 |  |  | void TestSourceGui::openDeviceSettingsDialog(const QPoint& p) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2022-04-17 01:31:50 +02:00
										 |  |  |     if (m_contextMenuType == ContextMenuDeviceSettings) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         BasicDeviceSettingsDialog dialog(this); | 
					
						
							|  |  |  |         dialog.setUseReverseAPI(m_settings.m_useReverseAPI); | 
					
						
							|  |  |  |         dialog.setReverseAPIAddress(m_settings.m_reverseAPIAddress); | 
					
						
							|  |  |  |         dialog.setReverseAPIPort(m_settings.m_reverseAPIPort); | 
					
						
							|  |  |  |         dialog.setReverseAPIDeviceIndex(m_settings.m_reverseAPIDeviceIndex); | 
					
						
							| 
									
										
										
										
											2018-12-17 18:39:09 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-17 01:31:50 +02:00
										 |  |  |         dialog.move(p); | 
					
						
							| 
									
										
										
										
											2022-12-20 10:31:15 +00:00
										 |  |  |         new DialogPositioner(&dialog, false); | 
					
						
							| 
									
										
										
										
											2022-04-17 01:31:50 +02:00
										 |  |  |         dialog.exec(); | 
					
						
							| 
									
										
										
										
											2018-01-14 02:25:24 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-17 01:31:50 +02:00
										 |  |  |         m_settings.m_useReverseAPI = dialog.useReverseAPI(); | 
					
						
							|  |  |  |         m_settings.m_reverseAPIAddress = dialog.getReverseAPIAddress(); | 
					
						
							|  |  |  |         m_settings.m_reverseAPIPort = dialog.getReverseAPIPort(); | 
					
						
							|  |  |  |         m_settings.m_reverseAPIDeviceIndex = dialog.getReverseAPIDeviceIndex(); | 
					
						
							| 
									
										
										
										
											2018-12-17 18:39:09 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-17 01:31:50 +02:00
										 |  |  |         sendSettings(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     resetContextMenuType(); | 
					
						
							| 
									
										
										
										
											2020-04-01 23:17:26 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2022-04-07 16:32:03 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | void TestSourceGui::makeUIConnections() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     QObject::connect(ui->startStop, &ButtonSwitch::toggled, this, &TestSourceGui::on_startStop_toggled); | 
					
						
							|  |  |  |     QObject::connect(ui->centerFrequency, &ValueDial::changed, this, &TestSourceGui::on_centerFrequency_changed); | 
					
						
							|  |  |  |     QObject::connect(ui->autoCorr, QOverload<int>::of(&QComboBox::currentIndexChanged), this, &TestSourceGui::on_autoCorr_currentIndexChanged); | 
					
						
							|  |  |  |     QObject::connect(ui->frequencyShift, &ValueDialZ::changed, this, &TestSourceGui::on_frequencyShift_changed); | 
					
						
							|  |  |  |     QObject::connect(ui->decimation, QOverload<int>::of(&QComboBox::currentIndexChanged), this, &TestSourceGui::on_decimation_currentIndexChanged); | 
					
						
							|  |  |  |     QObject::connect(ui->fcPos, QOverload<int>::of(&QComboBox::currentIndexChanged), this, &TestSourceGui::on_fcPos_currentIndexChanged); | 
					
						
							|  |  |  |     QObject::connect(ui->sampleRate, &ValueDial::changed, this, &TestSourceGui::on_sampleRate_changed); | 
					
						
							|  |  |  |     QObject::connect(ui->sampleSize, QOverload<int>::of(&QComboBox::currentIndexChanged), this, &TestSourceGui::on_sampleSize_currentIndexChanged); | 
					
						
							|  |  |  |     QObject::connect(ui->amplitudeCoarse, &QSlider::valueChanged, this, &TestSourceGui::on_amplitudeCoarse_valueChanged); | 
					
						
							|  |  |  |     QObject::connect(ui->amplitudeFine, &QSlider::valueChanged, this, &TestSourceGui::on_amplitudeFine_valueChanged); | 
					
						
							|  |  |  |     QObject::connect(ui->modulation, QOverload<int>::of(&QComboBox::currentIndexChanged), this, &TestSourceGui::on_modulation_currentIndexChanged); | 
					
						
							|  |  |  |     QObject::connect(ui->modulationFrequency, &QDial::valueChanged, this, &TestSourceGui::on_modulationFrequency_valueChanged); | 
					
						
							|  |  |  |     QObject::connect(ui->amModulation, &QDial::valueChanged, this, &TestSourceGui::on_amModulation_valueChanged); | 
					
						
							|  |  |  |     QObject::connect(ui->fmDeviation, &QDial::valueChanged, this, &TestSourceGui::on_fmDeviation_valueChanged); | 
					
						
							|  |  |  |     QObject::connect(ui->dcBias, &QSlider::valueChanged, this, &TestSourceGui::on_dcBias_valueChanged); | 
					
						
							|  |  |  |     QObject::connect(ui->iBias, &QSlider::valueChanged, this, &TestSourceGui::on_iBias_valueChanged); | 
					
						
							|  |  |  |     QObject::connect(ui->qBias, &QSlider::valueChanged, this, &TestSourceGui::on_qBias_valueChanged); | 
					
						
							|  |  |  |     QObject::connect(ui->phaseImbalance, &QSlider::valueChanged, this, &TestSourceGui::on_phaseImbalance_valueChanged); | 
					
						
							|  |  |  | } |