| 
									
										
										
										
											2016-10-20 18:04:15 +02:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | // Copyright (C) 2016 Edouard Griffiths, F4EXB                                   //
 | 
					
						
							|  |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // 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:39:30 +02:00
										 |  |  | // (at your option) any later version.                                           //
 | 
					
						
							| 
									
										
										
										
											2016-10-20 18:04:15 +02: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 <QDockWidget>
 | 
					
						
							|  |  |  | #include <QMainWindow>
 | 
					
						
							| 
									
										
										
										
											2016-11-28 02:17:08 +01:00
										 |  |  | #include <QFileDialog>
 | 
					
						
							|  |  |  | #include <QTime>
 | 
					
						
							|  |  |  | #include <QDebug>
 | 
					
						
							| 
									
										
										
										
											2016-10-20 18:04:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-01 00:00:03 +01:00
										 |  |  | #include "device/deviceuiset.h"
 | 
					
						
							| 
									
										
										
										
											2016-10-20 18:04:15 +02:00
										 |  |  | #include "dsp/upchannelizer.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "plugin/pluginapi.h"
 | 
					
						
							|  |  |  | #include "util/simpleserializer.h"
 | 
					
						
							|  |  |  | #include "util/db.h"
 | 
					
						
							|  |  |  | #include "dsp/dspengine.h"
 | 
					
						
							| 
									
										
										
										
											2018-03-29 15:20:38 +02:00
										 |  |  | #include "gui/crightclickenabler.h"
 | 
					
						
							|  |  |  | #include "gui/audioselectdialog.h"
 | 
					
						
							| 
									
										
										
										
											2018-04-15 10:42:51 +02:00
										 |  |  | #include "gui/basicchannelsettingsdialog.h"
 | 
					
						
							| 
									
										
										
										
											2016-10-20 18:04:15 +02:00
										 |  |  | #include "mainwindow.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-31 18:30:52 +02:00
										 |  |  | #include "ui_ammodgui.h"
 | 
					
						
							|  |  |  | #include "ammodgui.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-08 22:54:58 +01:00
										 |  |  | AMModGUI* AMModGUI::create(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSampleSource *channelTx) | 
					
						
							| 
									
										
										
										
											2016-10-20 18:04:15 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-11-08 22:54:58 +01:00
										 |  |  | 	AMModGUI* gui = new AMModGUI(pluginAPI, deviceUISet, channelTx); | 
					
						
							| 
									
										
										
										
											2016-10-20 18:04:15 +02:00
										 |  |  | 	return gui; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void AMModGUI::destroy() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2017-11-08 22:54:58 +01:00
										 |  |  |     delete this; | 
					
						
							| 
									
										
										
										
											2016-10-20 18:04:15 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void AMModGUI::setName(const QString& name) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	setObjectName(name); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | QString AMModGUI::getName() const | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return objectName(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | qint64 AMModGUI::getCenterFrequency() const { | 
					
						
							|  |  |  | 	return m_channelMarker.getCenterFrequency(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void AMModGUI::setCenterFrequency(qint64 centerFrequency) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	m_channelMarker.setCenterFrequency(centerFrequency); | 
					
						
							|  |  |  | 	applySettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void AMModGUI::resetToDefaults() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2017-10-10 06:59:13 +02:00
										 |  |  |     m_settings.resetToDefaults(); | 
					
						
							|  |  |  |     displaySettings(); | 
					
						
							|  |  |  |     applySettings(true); | 
					
						
							| 
									
										
										
										
											2016-10-20 18:04:15 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | QByteArray AMModGUI::serialize() const | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2017-10-10 06:59:13 +02:00
										 |  |  |     return m_settings.serialize(); | 
					
						
							| 
									
										
										
										
											2016-10-20 18:04:15 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool AMModGUI::deserialize(const QByteArray& data) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2017-10-10 06:59:13 +02:00
										 |  |  |     if(m_settings.deserialize(data)) { | 
					
						
							|  |  |  |         displaySettings(); | 
					
						
							|  |  |  |         applySettings(true); | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         resetToDefaults(); | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-10-20 18:04:15 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool AMModGUI::handleMessage(const Message& message) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2016-11-28 02:17:08 +01:00
										 |  |  |     if (AMMod::MsgReportFileSourceStreamData::match(message)) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         m_recordSampleRate = ((AMMod::MsgReportFileSourceStreamData&)message).getSampleRate(); | 
					
						
							|  |  |  |         m_recordLength = ((AMMod::MsgReportFileSourceStreamData&)message).getRecordLength(); | 
					
						
							|  |  |  |         m_samplesCount = 0; | 
					
						
							|  |  |  |         updateWithStreamData(); | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else if (AMMod::MsgReportFileSourceStreamTiming::match(message)) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         m_samplesCount = ((AMMod::MsgReportFileSourceStreamTiming&)message).getSamplesCount(); | 
					
						
							|  |  |  |         updateWithStreamTime(); | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-04-06 00:54:18 +02:00
										 |  |  |     else if (AMMod::MsgConfigureAMMod::match(message)) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         const AMMod::MsgConfigureAMMod& cfg = (AMMod::MsgConfigureAMMod&) message; | 
					
						
							|  |  |  |         m_settings = cfg.getSettings(); | 
					
						
							|  |  |  |         blockApplySettings(true); | 
					
						
							|  |  |  |         displaySettings(); | 
					
						
							|  |  |  |         blockApplySettings(false); | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else if (CWKeyer::MsgConfigureCWKeyer::match(message)) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         const CWKeyer::MsgConfigureCWKeyer& cfg = (CWKeyer::MsgConfigureCWKeyer&) message; | 
					
						
							|  |  |  |         ui->cwKeyerGUI->displaySettings(cfg.getSettings()); | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-11-28 02:17:08 +01:00
										 |  |  |     else | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-10-20 18:04:15 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-14 20:24:54 +01:00
										 |  |  | void AMModGUI::channelMarkerChangedByCursor() | 
					
						
							| 
									
										
										
										
											2016-10-20 18:04:15 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-11-14 20:24:54 +01:00
										 |  |  |     ui->deltaFrequency->setValue(m_channelMarker.getCenterFrequency()); | 
					
						
							|  |  |  |     m_settings.m_inputFrequencyOffset = m_channelMarker.getCenterFrequency(); | 
					
						
							| 
									
										
										
										
											2016-10-20 18:04:15 +02:00
										 |  |  | 	applySettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-28 02:17:08 +01:00
										 |  |  | void AMModGUI::handleSourceMessages() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     Message* message; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-28 08:33:05 +02:00
										 |  |  |     while ((message = getInputMessageQueue()->pop()) != 0) | 
					
						
							| 
									
										
										
										
											2016-11-28 02:17:08 +01:00
										 |  |  |     { | 
					
						
							|  |  |  |         if (handleMessage(*message)) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             delete message; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-18 00:12:04 +02:00
										 |  |  | void AMModGUI::on_deltaFrequency_changed(qint64 value) | 
					
						
							| 
									
										
										
										
											2016-10-20 18:04:15 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-05-18 00:12:04 +02:00
										 |  |  |     m_channelMarker.setCenterFrequency(value); | 
					
						
							| 
									
										
										
										
											2017-10-11 00:47:51 +02:00
										 |  |  |     m_settings.m_inputFrequencyOffset = value; | 
					
						
							| 
									
										
										
										
											2017-10-10 06:59:13 +02:00
										 |  |  |     applySettings(); | 
					
						
							| 
									
										
										
										
											2016-10-20 18:04:15 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void AMModGUI::on_rfBW_valueChanged(int value) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2016-12-01 00:10:34 +01:00
										 |  |  | 	ui->rfBWText->setText(QString("%1 kHz").arg(value / 10.0, 0, 'f', 1)); | 
					
						
							| 
									
										
										
										
											2017-10-10 06:59:13 +02:00
										 |  |  | 	m_settings.m_rfBandwidth = value * 100.0; | 
					
						
							| 
									
										
										
										
											2016-11-30 15:56:29 +01:00
										 |  |  | 	m_channelMarker.setBandwidth(value * 100); | 
					
						
							| 
									
										
										
										
											2016-10-20 18:04:15 +02:00
										 |  |  | 	applySettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void AMModGUI::on_modPercent_valueChanged(int value) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	ui->modPercentText->setText(QString("%1").arg(value)); | 
					
						
							| 
									
										
										
										
											2017-10-10 06:59:13 +02:00
										 |  |  | 	m_settings.m_modFactor = value / 100.0; | 
					
						
							| 
									
										
										
										
											2016-10-20 18:04:15 +02:00
										 |  |  | 	applySettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-02 17:56:19 +01:00
										 |  |  | void AMModGUI::on_volume_valueChanged(int value) | 
					
						
							| 
									
										
										
										
											2016-11-29 01:09:06 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-12-02 17:56:19 +01:00
										 |  |  |     ui->volumeText->setText(QString("%1").arg(value / 10.0, 0, 'f', 1)); | 
					
						
							| 
									
										
										
										
											2017-10-10 06:59:13 +02:00
										 |  |  |     m_settings.m_volumeFactor = value / 10.0; | 
					
						
							| 
									
										
										
										
											2016-11-29 01:09:06 +01:00
										 |  |  |     applySettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-01 00:10:34 +01:00
										 |  |  | void AMModGUI::on_toneFrequency_valueChanged(int value) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     ui->toneFrequencyText->setText(QString("%1k").arg(value / 100.0, 0, 'f', 2)); | 
					
						
							| 
									
										
										
										
											2017-10-10 06:59:13 +02:00
										 |  |  |     m_settings.m_toneFrequency = value * 10.0; | 
					
						
							| 
									
										
										
										
											2016-12-01 00:10:34 +01:00
										 |  |  |     applySettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-10 06:59:13 +02:00
										 |  |  | void AMModGUI::on_channelMute_toggled(bool checked) | 
					
						
							| 
									
										
										
										
											2016-10-20 18:04:15 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-10-10 06:59:13 +02:00
										 |  |  |     m_settings.m_channelMute = checked; | 
					
						
							| 
									
										
										
										
											2016-10-20 18:04:15 +02:00
										 |  |  | 	applySettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-10 06:59:13 +02:00
										 |  |  | void AMModGUI::on_playLoop_toggled(bool checked) | 
					
						
							| 
									
										
										
										
											2016-11-28 02:17:08 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-10-10 06:59:13 +02:00
										 |  |  |     m_settings.m_playLoop = checked; | 
					
						
							| 
									
										
										
										
											2016-11-28 18:19:23 +01:00
										 |  |  | 	applySettings(); | 
					
						
							| 
									
										
										
										
											2016-11-28 02:17:08 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void AMModGUI::on_play_toggled(bool checked) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     ui->tone->setEnabled(!checked); // release other source inputs
 | 
					
						
							| 
									
										
										
										
											2016-12-10 08:12:16 +01:00
										 |  |  |     ui->morseKeyer->setEnabled(!checked); | 
					
						
							| 
									
										
										
										
											2016-11-28 02:17:08 +01:00
										 |  |  |     ui->mic->setEnabled(!checked); | 
					
						
							| 
									
										
										
										
											2018-04-05 21:58:45 +02:00
										 |  |  |     m_settings.m_modAFInput = checked ? AMModSettings::AMModInputFile : AMModSettings::AMModInputNone; | 
					
						
							|  |  |  |     applySettings(); | 
					
						
							| 
									
										
										
										
											2016-11-28 02:17:08 +01:00
										 |  |  |     ui->navTimeSlider->setEnabled(!checked); | 
					
						
							|  |  |  |     m_enableNavTime = !checked; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void AMModGUI::on_tone_toggled(bool checked) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     ui->play->setEnabled(!checked); // release other source inputs
 | 
					
						
							| 
									
										
										
										
											2016-12-10 08:12:16 +01:00
										 |  |  |     ui->morseKeyer->setEnabled(!checked); | 
					
						
							| 
									
										
										
										
											2016-11-28 02:17:08 +01:00
										 |  |  |     ui->mic->setEnabled(!checked); | 
					
						
							| 
									
										
										
										
											2018-04-05 21:58:45 +02:00
										 |  |  |     m_settings.m_modAFInput = checked ? AMModSettings::AMModInputTone : AMModSettings::AMModInputNone; | 
					
						
							|  |  |  |     applySettings(); | 
					
						
							| 
									
										
										
										
											2016-11-28 02:17:08 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-10 08:12:16 +01:00
										 |  |  | void AMModGUI::on_morseKeyer_toggled(bool checked) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     ui->play->setEnabled(!checked); // release other source inputs
 | 
					
						
							|  |  |  |     ui->tone->setEnabled(!checked); // release other source inputs
 | 
					
						
							|  |  |  |     ui->mic->setEnabled(!checked); | 
					
						
							| 
									
										
										
										
											2018-04-05 21:58:45 +02:00
										 |  |  |     m_settings.m_modAFInput = checked ? AMModSettings::AMModInputCWTone : AMModSettings::AMModInputNone; | 
					
						
							|  |  |  |     applySettings(); | 
					
						
							| 
									
										
										
										
											2016-12-10 08:12:16 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-28 02:17:08 +01:00
										 |  |  | void AMModGUI::on_mic_toggled(bool checked) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     ui->play->setEnabled(!checked); // release other source inputs
 | 
					
						
							| 
									
										
										
										
											2016-12-10 08:12:16 +01:00
										 |  |  |     ui->morseKeyer->setEnabled(!checked); | 
					
						
							| 
									
										
										
										
											2016-11-28 02:17:08 +01:00
										 |  |  |     ui->tone->setEnabled(!checked); // release other source inputs
 | 
					
						
							| 
									
										
										
										
											2018-04-05 21:58:45 +02:00
										 |  |  |     m_settings.m_modAFInput = checked ? AMModSettings::AMModInputAudio : AMModSettings::AMModInputNone; | 
					
						
							|  |  |  |     applySettings(); | 
					
						
							| 
									
										
										
										
											2016-11-28 02:17:08 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void AMModGUI::on_navTimeSlider_valueChanged(int value) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (m_enableNavTime && ((value >= 0) && (value <= 100))) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         int t_sec = (m_recordLength * value) / 100; | 
					
						
							|  |  |  |         QTime t(0, 0, 0, 0); | 
					
						
							|  |  |  |         t = t.addSecs(t_sec); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         AMMod::MsgConfigureFileSourceSeek* message = AMMod::MsgConfigureFileSourceSeek::create(value); | 
					
						
							|  |  |  |         m_amMod->getInputMessageQueue()->push(message); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-13 00:45:03 +01:00
										 |  |  | void AMModGUI::on_showFileDialog_clicked(bool checked) | 
					
						
							| 
									
										
										
										
											2016-11-28 02:17:08 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-11-13 00:45:03 +01:00
										 |  |  |     (void) checked; | 
					
						
							| 
									
										
										
										
											2016-11-28 02:17:08 +01:00
										 |  |  |     QString fileName = QFileDialog::getOpenFileName(this, | 
					
						
							| 
									
										
										
										
											2018-05-11 00:00:15 +02:00
										 |  |  |         tr("Open raw audio file"), ".", tr("Raw audio Files (*.raw)"), 0, QFileDialog::DontUseNativeDialog); | 
					
						
							| 
									
										
										
										
											2016-11-28 02:17:08 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (fileName != "") | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         m_fileName = fileName; | 
					
						
							|  |  |  |         ui->recordFileText->setText(m_fileName); | 
					
						
							|  |  |  |         ui->play->setEnabled(true); | 
					
						
							|  |  |  |         configureFileName(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void AMModGUI::configureFileName() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     qDebug() << "FileSourceGui::configureFileName: " << m_fileName.toStdString().c_str(); | 
					
						
							|  |  |  |     AMMod::MsgConfigureFileSourceName* message = AMMod::MsgConfigureFileSourceName::create(m_fileName); | 
					
						
							|  |  |  |     m_amMod->getInputMessageQueue()->push(message); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-13 00:45:03 +01:00
										 |  |  | void AMModGUI::onWidgetRolled(QWidget* widget, bool rollDown) | 
					
						
							| 
									
										
										
										
											2016-10-20 18:04:15 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-11-13 00:45:03 +01:00
										 |  |  |     (void) widget; | 
					
						
							|  |  |  |     (void) rollDown; | 
					
						
							| 
									
										
										
										
											2016-10-20 18:04:15 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-15 10:42:51 +02:00
										 |  |  | void AMModGUI::onMenuDialogCalled(const QPoint &p) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-05-09 21:07:05 +02:00
										 |  |  |     if (m_contextMenuType == ContextMenuChannelSettings) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         BasicChannelSettingsDialog dialog(&m_channelMarker, 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); | 
					
						
							|  |  |  |         dialog.setReverseAPIChannelIndex(m_settings.m_reverseAPIChannelIndex); | 
					
						
							|  |  |  |         dialog.move(p); | 
					
						
							|  |  |  |         dialog.exec(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         m_settings.m_inputFrequencyOffset = m_channelMarker.getCenterFrequency(); | 
					
						
							|  |  |  |         m_settings.m_rgbColor = m_channelMarker.getColor().rgb(); | 
					
						
							|  |  |  |         m_settings.m_title = m_channelMarker.getTitle(); | 
					
						
							|  |  |  |         m_settings.m_useReverseAPI = dialog.useReverseAPI(); | 
					
						
							|  |  |  |         m_settings.m_reverseAPIAddress = dialog.getReverseAPIAddress(); | 
					
						
							|  |  |  |         m_settings.m_reverseAPIPort = dialog.getReverseAPIPort(); | 
					
						
							|  |  |  |         m_settings.m_reverseAPIDeviceIndex = dialog.getReverseAPIDeviceIndex(); | 
					
						
							|  |  |  |         m_settings.m_reverseAPIChannelIndex = dialog.getReverseAPIChannelIndex(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         setWindowTitle(m_settings.m_title); | 
					
						
							|  |  |  |         setTitleColor(m_settings.m_rgbColor); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         applySettings(); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-04-15 10:42:51 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-09 21:07:05 +02:00
										 |  |  |     resetContextMenuType(); | 
					
						
							| 
									
										
										
										
											2018-04-15 10:42:51 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-08 22:54:58 +01:00
										 |  |  | AMModGUI::AMModGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSampleSource *channelTx, QWidget* parent) : | 
					
						
							| 
									
										
										
										
											2016-10-20 18:04:15 +02:00
										 |  |  | 	RollupWidget(parent), | 
					
						
							|  |  |  | 	ui(new Ui::AMModGUI), | 
					
						
							|  |  |  | 	m_pluginAPI(pluginAPI), | 
					
						
							| 
									
										
										
										
											2017-11-01 00:00:03 +01:00
										 |  |  | 	m_deviceUISet(deviceUISet), | 
					
						
							| 
									
										
										
										
											2016-10-20 18:04:15 +02:00
										 |  |  | 	m_channelMarker(this), | 
					
						
							|  |  |  | 	m_doApplySettings(true), | 
					
						
							| 
									
										
										
										
											2016-11-28 02:17:08 +01:00
										 |  |  |     m_recordLength(0), | 
					
						
							|  |  |  |     m_recordSampleRate(48000), | 
					
						
							|  |  |  |     m_samplesCount(0), | 
					
						
							|  |  |  |     m_tickCount(0), | 
					
						
							| 
									
										
										
										
											2018-04-05 21:58:45 +02:00
										 |  |  |     m_enableNavTime(false) | 
					
						
							| 
									
										
										
										
											2016-10-20 18:04:15 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	ui->setupUi(this); | 
					
						
							|  |  |  | 	setAttribute(Qt::WA_DeleteOnClose, true); | 
					
						
							|  |  |  | 	connect(this, SIGNAL(widgetRolled(QWidget*,bool)), this, SLOT(onWidgetRolled(QWidget*,bool))); | 
					
						
							| 
									
										
										
										
											2018-04-15 10:42:51 +02:00
										 |  |  | 	connect(this, SIGNAL(customContextMenuRequested(const QPoint &)), this, SLOT(onMenuDialogCalled(const QPoint &))); | 
					
						
							| 
									
										
										
										
											2016-10-20 18:04:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-08 22:54:58 +01:00
										 |  |  | 	m_amMod = (AMMod*) channelTx; //new AMMod(m_deviceUISet->m_deviceSinkAPI);
 | 
					
						
							| 
									
										
										
										
											2017-09-28 08:33:05 +02:00
										 |  |  | 	m_amMod->setMessageQueueToGUI(getInputMessageQueue()); | 
					
						
							| 
									
										
										
										
											2016-10-20 18:04:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-24 13:45:10 +02:00
										 |  |  | 	connect(&MainWindow::getInstance()->getMasterTimer(), SIGNAL(timeout()), this, SLOT(tick())); | 
					
						
							| 
									
										
										
										
											2016-10-20 18:04:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-29 15:20:38 +02:00
										 |  |  |     CRightClickEnabler *audioMuteRightClickEnabler = new CRightClickEnabler(ui->mic); | 
					
						
							| 
									
										
										
										
											2018-12-17 00:34:14 +01:00
										 |  |  |     connect(audioMuteRightClickEnabler, SIGNAL(rightClick(const QPoint &)), this, SLOT(audioSelect())); | 
					
						
							| 
									
										
										
										
											2018-03-29 15:20:38 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-18 00:12:04 +02:00
										 |  |  |     ui->deltaFrequencyLabel->setText(QString("%1f").arg(QChar(0x94, 0x03))); | 
					
						
							|  |  |  |     ui->deltaFrequency->setColorMapper(ColorMapper(ColorMapper::GrayGold)); | 
					
						
							|  |  |  |     ui->deltaFrequency->setValueRange(false, 7, -9999999, 9999999); | 
					
						
							| 
									
										
										
										
											2016-10-20 18:04:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-14 20:24:54 +01:00
										 |  |  |     m_channelMarker.blockSignals(true); | 
					
						
							|  |  |  |     m_channelMarker.setColor(Qt::yellow); | 
					
						
							|  |  |  |     m_channelMarker.setBandwidth(5000); | 
					
						
							|  |  |  |     m_channelMarker.setCenterFrequency(0); | 
					
						
							| 
									
										
										
										
											2017-10-12 02:19:23 +02:00
										 |  |  |     m_channelMarker.setTitle("AM Modulator"); | 
					
						
							| 
									
										
										
										
											2019-05-30 18:38:10 +02:00
										 |  |  |     m_channelMarker.setSourceOrSinkStream(false); | 
					
						
							| 
									
										
										
										
											2017-11-14 20:24:54 +01:00
										 |  |  |     m_channelMarker.blockSignals(false); | 
					
						
							|  |  |  | 	m_channelMarker.setVisible(true); // activate signal on the last setting only
 | 
					
						
							| 
									
										
										
										
											2016-10-20 18:04:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-10 06:59:13 +02:00
										 |  |  | 	m_settings.setChannelMarker(&m_channelMarker); | 
					
						
							|  |  |  | 	m_settings.setCWKeyerGUI(ui->cwKeyerGUI); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-23 01:19:32 +01:00
										 |  |  | 	m_deviceUISet->registerTxChannelInstance(AMMod::m_channelIdURI, this); | 
					
						
							| 
									
										
										
										
											2017-11-01 00:00:03 +01:00
										 |  |  | 	m_deviceUISet->addChannelMarker(&m_channelMarker); | 
					
						
							|  |  |  | 	m_deviceUISet->addRollupWidget(this); | 
					
						
							| 
									
										
										
										
											2016-10-20 18:04:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-14 20:24:54 +01:00
										 |  |  | 	connect(&m_channelMarker, SIGNAL(changedByCursor()), this, SLOT(channelMarkerChangedByCursor())); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-28 02:17:08 +01:00
										 |  |  |     ui->play->setEnabled(false); | 
					
						
							|  |  |  |     ui->play->setChecked(false); | 
					
						
							|  |  |  |     ui->tone->setChecked(false); | 
					
						
							| 
									
										
										
										
											2016-12-11 11:35:25 +01:00
										 |  |  |     ui->morseKeyer->setChecked(false); | 
					
						
							| 
									
										
										
										
											2016-11-28 02:17:08 +01:00
										 |  |  |     ui->mic->setChecked(false); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-11 11:35:25 +01:00
										 |  |  |     ui->cwKeyerGUI->setBuddies(m_amMod->getInputMessageQueue(), m_amMod->getCWKeyer()); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-28 08:33:05 +02:00
										 |  |  | 	connect(getInputMessageQueue(), SIGNAL(messageEnqueued()), this, SLOT(handleSourceMessages())); | 
					
						
							| 
									
										
										
										
											2016-12-02 17:56:19 +01:00
										 |  |  | 	connect(m_amMod, SIGNAL(levelChanged(qreal, qreal, int)), ui->volumeMeter, SLOT(levelChanged(qreal, qreal, int))); | 
					
						
							| 
									
										
										
										
											2017-10-10 07:14:52 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	displaySettings(); | 
					
						
							|  |  |  |     applySettings(true); | 
					
						
							| 
									
										
										
										
											2016-10-20 18:04:15 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | AMModGUI::~AMModGUI() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2017-11-01 00:00:03 +01:00
										 |  |  |     m_deviceUISet->removeTxChannelInstance(this); | 
					
						
							| 
									
										
										
										
											2017-11-08 22:54:58 +01:00
										 |  |  | 	delete m_amMod; // TODO: check this: when the GUI closes it has to delete the modulator
 | 
					
						
							| 
									
										
										
										
											2016-10-20 18:04:15 +02:00
										 |  |  | 	delete ui; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void AMModGUI::blockApplySettings(bool block) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_doApplySettings = !block; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-13 00:45:03 +01:00
										 |  |  | void AMModGUI::applySettings(bool force) | 
					
						
							| 
									
										
										
										
											2016-10-20 18:04:15 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-11-13 00:45:03 +01:00
										 |  |  |     (void) force; | 
					
						
							| 
									
										
										
										
											2016-10-20 18:04:15 +02:00
										 |  |  | 	if (m_doApplySettings) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		setTitleColor(m_channelMarker.getColor()); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-10 22:37:33 +02:00
										 |  |  | 		AMMod::MsgConfigureChannelizer *msgConfigure = AMMod::MsgConfigureChannelizer::create( | 
					
						
							| 
									
										
										
										
											2017-10-11 00:47:51 +02:00
										 |  |  | 		        48000, m_channelMarker.getCenterFrequency()); | 
					
						
							| 
									
										
										
										
											2017-10-10 22:37:33 +02:00
										 |  |  |         m_amMod->getInputMessageQueue()->push(msgConfigure); | 
					
						
							| 
									
										
										
										
											2016-10-20 18:04:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-10 21:38:38 +02:00
										 |  |  |         AMMod::MsgConfigureAMMod* message = AMMod::MsgConfigureAMMod::create( m_settings, force); | 
					
						
							|  |  |  |         m_amMod->getInputMessageQueue()->push(message); | 
					
						
							| 
									
										
										
										
											2016-10-20 18:04:15 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-10 06:59:13 +02:00
										 |  |  | void AMModGUI::displaySettings() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2017-10-12 02:19:23 +02:00
										 |  |  |     m_channelMarker.blockSignals(true); | 
					
						
							|  |  |  |     m_channelMarker.setCenterFrequency(m_settings.m_inputFrequencyOffset); | 
					
						
							| 
									
										
										
										
											2018-04-15 10:42:51 +02:00
										 |  |  |     m_channelMarker.setTitle(m_settings.m_title); | 
					
						
							| 
									
										
										
										
											2017-10-12 02:19:23 +02:00
										 |  |  |     m_channelMarker.setBandwidth(m_settings.m_rfBandwidth); | 
					
						
							|  |  |  |     m_channelMarker.blockSignals(false); | 
					
						
							| 
									
										
										
										
											2017-11-14 20:24:54 +01:00
										 |  |  |     m_channelMarker.setColor(m_settings.m_rgbColor); // activate signal on the last setting only
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     setTitleColor(m_settings.m_rgbColor); | 
					
						
							|  |  |  |     setWindowTitle(m_channelMarker.getTitle()); | 
					
						
							| 
									
										
										
										
											2017-10-12 02:19:23 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-10 06:59:13 +02:00
										 |  |  |     blockApplySettings(true); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-14 20:24:54 +01:00
										 |  |  |     ui->deltaFrequency->setValue(m_channelMarker.getCenterFrequency()); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-10 07:14:52 +02:00
										 |  |  |     ui->rfBW->setValue(roundf(m_settings.m_rfBandwidth / 100.0)); | 
					
						
							| 
									
										
										
										
											2017-10-10 06:59:13 +02:00
										 |  |  |     ui->rfBWText->setText(QString("%1 kHz").arg(m_settings.m_rfBandwidth / 1000.0, 0, 'f', 1)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-10 07:14:52 +02:00
										 |  |  |     int modPercent = roundf(m_settings.m_modFactor * 100.0); | 
					
						
							| 
									
										
										
										
											2017-10-10 06:59:13 +02:00
										 |  |  |     ui->modPercent->setValue(modPercent); | 
					
						
							|  |  |  |     ui->modPercentText->setText(QString("%1").arg(modPercent)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-10 07:14:52 +02:00
										 |  |  |     ui->toneFrequency->setValue(roundf(m_settings.m_toneFrequency / 10.0)); | 
					
						
							| 
									
										
										
										
											2017-10-10 06:59:13 +02:00
										 |  |  |     ui->toneFrequencyText->setText(QString("%1k").arg(m_settings.m_toneFrequency / 1000.0, 0, 'f', 2)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-10 07:14:52 +02:00
										 |  |  |     ui->volume->setValue(roundf(m_settings.m_volumeFactor * 10.0)); | 
					
						
							| 
									
										
										
										
											2017-10-10 06:59:13 +02:00
										 |  |  |     ui->volumeText->setText(QString("%1").arg(m_settings.m_volumeFactor, 0, 'f', 1)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ui->channelMute->setChecked(m_settings.m_channelMute); | 
					
						
							|  |  |  |     ui->playLoop->setChecked(m_settings.m_playLoop); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-06 00:54:18 +02:00
										 |  |  |     ui->tone->setEnabled((m_settings.m_modAFInput == AMModSettings::AMModInputAF::AMModInputTone) || (m_settings.m_modAFInput == AMModSettings::AMModInputAF::AMModInputNone)); | 
					
						
							|  |  |  |     ui->mic->setEnabled((m_settings.m_modAFInput == AMModSettings::AMModInputAF::AMModInputAudio) || (m_settings.m_modAFInput == AMModSettings::AMModInputAF::AMModInputNone)); | 
					
						
							|  |  |  |     ui->play->setEnabled((m_settings.m_modAFInput == AMModSettings::AMModInputAF::AMModInputFile) || (m_settings.m_modAFInput == AMModSettings::AMModInputAF::AMModInputNone)); | 
					
						
							|  |  |  |     ui->morseKeyer->setEnabled((m_settings.m_modAFInput == AMModSettings::AMModInputAF::AMModInputCWTone) || (m_settings.m_modAFInput == AMModSettings::AMModInputAF::AMModInputNone)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ui->tone->setChecked(m_settings.m_modAFInput == AMModSettings::AMModInputAF::AMModInputTone); | 
					
						
							|  |  |  |     ui->mic->setChecked(m_settings.m_modAFInput == AMModSettings::AMModInputAF::AMModInputAudio); | 
					
						
							|  |  |  |     ui->play->setChecked(m_settings.m_modAFInput == AMModSettings::AMModInputAF::AMModInputFile); | 
					
						
							|  |  |  |     ui->morseKeyer->setChecked(m_settings.m_modAFInput == AMModSettings::AMModInputAF::AMModInputCWTone); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-10 06:59:13 +02:00
										 |  |  |     blockApplySettings(false); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-20 18:04:15 +02:00
										 |  |  | void AMModGUI::leaveEvent(QEvent*) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	m_channelMarker.setHighlighted(false); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void AMModGUI::enterEvent(QEvent*) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	m_channelMarker.setHighlighted(true); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-29 15:20:38 +02:00
										 |  |  | void AMModGUI::audioSelect() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     qDebug("AMModGUI::audioSelect"); | 
					
						
							|  |  |  |     AudioSelectDialog audioSelect(DSPEngine::instance()->getAudioDeviceManager(), m_settings.m_audioDeviceName, true); // true for input
 | 
					
						
							|  |  |  |     audioSelect.exec(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (audioSelect.m_selected) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         m_settings.m_audioDeviceName = audioSelect.m_audioDeviceName; | 
					
						
							|  |  |  |         applySettings(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-20 18:04:15 +02:00
										 |  |  | void AMModGUI::tick() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2017-05-16 23:39:49 +02:00
										 |  |  |     double powDb = CalcDb::dbPower(m_amMod->getMagSq()); | 
					
						
							| 
									
										
										
										
											2018-02-03 10:33:02 +01:00
										 |  |  | 	m_channelPowerDbAvg(powDb); | 
					
						
							|  |  |  | 	ui->channelPower->setText(tr("%1 dB").arg(m_channelPowerDbAvg.asDouble(), 0, 'f', 1)); | 
					
						
							| 
									
										
										
										
											2016-11-28 02:17:08 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-05 21:58:45 +02:00
										 |  |  |     if (((++m_tickCount & 0xf) == 0) && (m_settings.m_modAFInput == AMModSettings::AMModInputFile)) | 
					
						
							| 
									
										
										
										
											2016-11-28 02:17:08 +01:00
										 |  |  |     { | 
					
						
							|  |  |  |         AMMod::MsgConfigureFileSourceStreamTiming* message = AMMod::MsgConfigureFileSourceStreamTiming::create(); | 
					
						
							|  |  |  |         m_amMod->getInputMessageQueue()->push(message); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void AMModGUI::updateWithStreamData() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     QTime recordLength(0, 0, 0, 0); | 
					
						
							|  |  |  |     recordLength = recordLength.addSecs(m_recordLength); | 
					
						
							| 
									
										
										
										
											2018-05-11 11:00:08 +02:00
										 |  |  |     QString s_time = recordLength.toString("HH:mm:ss"); | 
					
						
							| 
									
										
										
										
											2016-11-28 02:17:08 +01:00
										 |  |  |     ui->recordLengthText->setText(s_time); | 
					
						
							|  |  |  |     updateWithStreamTime(); | 
					
						
							| 
									
										
										
										
											2016-10-20 18:04:15 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-28 02:17:08 +01:00
										 |  |  | void AMModGUI::updateWithStreamTime() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int t_sec = 0; | 
					
						
							|  |  |  |     int t_msec = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (m_recordSampleRate > 0) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         t_msec = ((m_samplesCount * 1000) / m_recordSampleRate) % 1000; | 
					
						
							|  |  |  |         t_sec = m_samplesCount / m_recordSampleRate; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     QTime t(0, 0, 0, 0); | 
					
						
							|  |  |  |     t = t.addSecs(t_sec); | 
					
						
							|  |  |  |     t = t.addMSecs(t_msec); | 
					
						
							| 
									
										
										
										
											2018-05-11 11:00:08 +02:00
										 |  |  |     QString s_timems = t.toString("HH:mm:ss.zzz"); | 
					
						
							|  |  |  |     QString s_time = t.toString("HH:mm:ss"); | 
					
						
							| 
									
										
										
										
											2016-11-28 02:17:08 +01:00
										 |  |  |     ui->relTimeText->setText(s_timems); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!m_enableNavTime) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         float posRatio = (float) t_sec / (float) m_recordLength; | 
					
						
							|  |  |  |         ui->navTimeSlider->setValue((int) (posRatio * 100.0)); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } |