2019-02-22 01:17:27 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
2023-11-18 00:36:53 -05:00
|
|
|
// Copyright (C) 2012 maintech GmbH, Otto-Hahn-Str. 15, 97204 Hoechberg, Germany //
|
|
|
|
// written by Christian Daniel //
|
|
|
|
// Copyright (C) 2015-2023 Edouard Griffiths, F4EXB <f4exb06@gmail.com> //
|
|
|
|
// Copyright (C) 2015 John Greb <hexameron@spam.no> //
|
|
|
|
// Copyright (C) 2018 beta-tester <alpha-beta-release@gmx.net> //
|
|
|
|
// Copyright (C) 2021-2023 Jon Beniston, M7RCE <jon@beniston.com> //
|
2019-02-22 01:17:27 -05: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 00:39:30 -04:00
|
|
|
// (at your option) any later version. //
|
2019-02-22 01:17:27 -05: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>
|
|
|
|
#include <QFileDialog>
|
|
|
|
#include <QTime>
|
|
|
|
#include <QDebug>
|
|
|
|
|
|
|
|
#include "freedvmodgui.h"
|
|
|
|
|
|
|
|
#include "device/deviceuiset.h"
|
|
|
|
#include "dsp/spectrumvis.h"
|
|
|
|
#include "plugin/pluginapi.h"
|
|
|
|
#include "util/db.h"
|
|
|
|
#include "dsp/dspengine.h"
|
|
|
|
#include "dsp/dspcommands.h"
|
2019-11-14 19:04:24 -05:00
|
|
|
#include "dsp/cwkeyer.h"
|
2019-02-22 01:17:27 -05:00
|
|
|
#include "gui/crightclickenabler.h"
|
|
|
|
#include "gui/audioselectdialog.h"
|
|
|
|
#include "gui/basicchannelsettingsdialog.h"
|
2022-12-20 05:31:15 -05:00
|
|
|
#include "gui/dialpopup.h"
|
|
|
|
#include "gui/dialogpositioner.h"
|
2020-10-12 15:59:04 -04:00
|
|
|
#include "maincore.h"
|
2019-02-28 18:25:57 -05:00
|
|
|
#include "ui_freedvmodgui.h"
|
2019-02-22 01:17:27 -05:00
|
|
|
|
|
|
|
FreeDVModGUI* FreeDVModGUI::create(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSampleSource *channelTx)
|
|
|
|
{
|
|
|
|
FreeDVModGUI* gui = new FreeDVModGUI(pluginAPI, deviceUISet, channelTx);
|
|
|
|
return gui;
|
|
|
|
}
|
|
|
|
|
|
|
|
void FreeDVModGUI::destroy()
|
|
|
|
{
|
|
|
|
delete this;
|
|
|
|
}
|
|
|
|
|
|
|
|
void FreeDVModGUI::resetToDefaults()
|
|
|
|
{
|
|
|
|
m_settings.resetToDefaults();
|
|
|
|
}
|
|
|
|
|
|
|
|
QByteArray FreeDVModGUI::serialize() const
|
|
|
|
{
|
|
|
|
return m_settings.serialize();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool FreeDVModGUI::deserialize(const QByteArray& data)
|
|
|
|
{
|
|
|
|
if(m_settings.deserialize(data))
|
|
|
|
{
|
|
|
|
qDebug("FreeDVModGUI::deserialize");
|
|
|
|
displaySettings();
|
|
|
|
applyBandwidths(5 - ui->spanLog2->value(), true); // does applySettings(true)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_settings.resetToDefaults();
|
|
|
|
displaySettings();
|
|
|
|
applyBandwidths(5 - ui->spanLog2->value(), true); // does applySettings(true)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool FreeDVModGUI::handleMessage(const Message& message)
|
|
|
|
{
|
|
|
|
if (FreeDVMod::MsgReportFileSourceStreamData::match(message))
|
|
|
|
{
|
|
|
|
m_recordSampleRate = ((FreeDVMod::MsgReportFileSourceStreamData&)message).getSampleRate();
|
|
|
|
m_recordLength = ((FreeDVMod::MsgReportFileSourceStreamData&)message).getRecordLength();
|
|
|
|
m_samplesCount = 0;
|
|
|
|
updateWithStreamData();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (FreeDVMod::MsgReportFileSourceStreamTiming::match(message))
|
|
|
|
{
|
|
|
|
m_samplesCount = ((FreeDVMod::MsgReportFileSourceStreamTiming&)message).getSamplesCount();
|
|
|
|
updateWithStreamTime();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (DSPConfigureAudio::match(message))
|
|
|
|
{
|
2019-02-26 19:56:27 -05:00
|
|
|
qDebug("FreeDVModGUI::handleMessage: DSPConfigureAudio: %d", m_freeDVMod->getModemSampleRate());
|
2019-02-22 01:17:27 -05:00
|
|
|
applyBandwidths(5 - ui->spanLog2->value()); // will update spectrum details with new sample rate
|
|
|
|
return true;
|
|
|
|
}
|
2022-04-13 05:08:21 -04:00
|
|
|
else if (DSPSignalNotification::match(message))
|
|
|
|
{
|
|
|
|
const DSPSignalNotification& notif = (const DSPSignalNotification&) message;
|
|
|
|
m_deviceCenterFrequency = notif.getCenterFrequency();
|
|
|
|
m_basebandSampleRate = notif.getSampleRate();
|
|
|
|
ui->deltaFrequency->setValueRange(false, 7, -m_basebandSampleRate/2, m_basebandSampleRate/2);
|
|
|
|
ui->deltaFrequencyLabel->setToolTip(tr("Range %1 %L2 Hz").arg(QChar(0xB1)).arg(m_basebandSampleRate/2));
|
|
|
|
updateAbsoluteCenterFrequency();
|
|
|
|
return true;
|
|
|
|
}
|
2019-02-22 01:17:27 -05:00
|
|
|
else if (FreeDVMod::MsgConfigureFreeDVMod::match(message))
|
|
|
|
{
|
|
|
|
const FreeDVMod::MsgConfigureFreeDVMod& cfg = (FreeDVMod::MsgConfigureFreeDVMod&) message;
|
|
|
|
m_settings = cfg.getSettings();
|
|
|
|
blockApplySettings(true);
|
2021-11-30 18:20:14 -05:00
|
|
|
ui->spectrumGUI->updateSettings();
|
2021-12-03 16:32:54 -05:00
|
|
|
m_channelMarker.updateSettings(static_cast<const ChannelMarker*>(m_settings.m_channelMarker));
|
2019-02-22 01:17:27 -05:00
|
|
|
displaySettings();
|
|
|
|
blockApplySettings(false);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (CWKeyer::MsgConfigureCWKeyer::match(message))
|
|
|
|
{
|
|
|
|
const CWKeyer::MsgConfigureCWKeyer& cfg = (CWKeyer::MsgConfigureCWKeyer&) message;
|
2019-07-29 19:31:46 -04:00
|
|
|
ui->cwKeyerGUI->setSettings(cfg.getSettings());
|
|
|
|
ui->cwKeyerGUI->displaySettings();
|
2019-02-22 01:17:27 -05:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void FreeDVModGUI::channelMarkerChangedByCursor()
|
|
|
|
{
|
|
|
|
ui->deltaFrequency->setValue(m_channelMarker.getCenterFrequency());
|
|
|
|
m_settings.m_inputFrequencyOffset = m_channelMarker.getCenterFrequency();
|
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
void FreeDVModGUI::channelMarkerUpdate()
|
|
|
|
{
|
|
|
|
m_settings.m_rgbColor = m_channelMarker.getColor().rgb();
|
|
|
|
displaySettings();
|
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
void FreeDVModGUI::handleSourceMessages()
|
|
|
|
{
|
|
|
|
Message* message;
|
|
|
|
|
|
|
|
while ((message = getInputMessageQueue()->pop()) != 0)
|
|
|
|
{
|
|
|
|
if (handleMessage(*message))
|
|
|
|
{
|
|
|
|
delete message;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void FreeDVModGUI::on_deltaFrequency_changed(qint64 value)
|
|
|
|
{
|
|
|
|
m_channelMarker.setCenterFrequency(value);
|
|
|
|
m_settings.m_inputFrequencyOffset = m_channelMarker.getCenterFrequency();
|
2022-04-13 05:08:21 -04:00
|
|
|
updateAbsoluteCenterFrequency();
|
2019-02-22 01:17:27 -05:00
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
void FreeDVModGUI::on_spanLog2_valueChanged(int value)
|
|
|
|
{
|
|
|
|
if ((value < 0) || (value > 4)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
applyBandwidths(5 - value);
|
|
|
|
}
|
|
|
|
|
2019-02-24 14:59:09 -05:00
|
|
|
void FreeDVModGUI::on_gaugeInput_toggled(bool checked)
|
|
|
|
{
|
|
|
|
m_settings.m_gaugeInputElseModem = checked;
|
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
2019-02-22 01:17:27 -05:00
|
|
|
void FreeDVModGUI::on_toneFrequency_valueChanged(int value)
|
|
|
|
{
|
|
|
|
ui->toneFrequencyText->setText(QString("%1k").arg(value / 100.0, 0, 'f', 2));
|
|
|
|
m_settings.m_toneFrequency = value * 10.0;
|
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
void FreeDVModGUI::on_volume_valueChanged(int value)
|
|
|
|
{
|
|
|
|
ui->volumeText->setText(QString("%1").arg(value / 10.0, 0, 'f', 1));
|
|
|
|
m_settings.m_volumeFactor = value / 10.0;
|
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
void FreeDVModGUI::on_audioMute_toggled(bool checked)
|
|
|
|
{
|
|
|
|
m_settings.m_audioMute = checked;
|
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
2019-02-22 09:30:51 -05:00
|
|
|
void FreeDVModGUI::on_freeDVMode_currentIndexChanged(int index)
|
|
|
|
{
|
|
|
|
m_settings.m_freeDVMode = (FreeDVModSettings::FreeDVMode) index;
|
|
|
|
m_channelMarker.setBandwidth(FreeDVModSettings::getHiCutoff(m_settings.m_freeDVMode) * 2);
|
|
|
|
m_channelMarker.setLowCutoff(FreeDVModSettings::getLowCutoff(m_settings.m_freeDVMode));
|
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
2019-02-22 01:17:27 -05:00
|
|
|
void FreeDVModGUI::on_playLoop_toggled(bool checked)
|
|
|
|
{
|
|
|
|
m_settings.m_playLoop = checked;
|
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
void FreeDVModGUI::on_play_toggled(bool checked)
|
|
|
|
{
|
|
|
|
ui->tone->setEnabled(!checked); // release other source inputs
|
|
|
|
ui->morseKeyer->setEnabled(!checked);
|
|
|
|
ui->mic->setEnabled(!checked);
|
|
|
|
m_settings.m_modAFInput = checked ? FreeDVModSettings::FreeDVModInputFile : FreeDVModSettings::FreeDVModInputNone;
|
|
|
|
applySettings();
|
|
|
|
ui->navTimeSlider->setEnabled(!checked);
|
|
|
|
m_enableNavTime = !checked;
|
|
|
|
}
|
|
|
|
|
|
|
|
void FreeDVModGUI::on_tone_toggled(bool checked)
|
|
|
|
{
|
|
|
|
ui->play->setEnabled(!checked); // release other source inputs
|
|
|
|
ui->morseKeyer->setEnabled(!checked);
|
|
|
|
ui->mic->setEnabled(!checked);
|
|
|
|
m_settings.m_modAFInput = checked ? FreeDVModSettings::FreeDVModInputTone : FreeDVModSettings::FreeDVModInputNone;
|
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
void FreeDVModGUI::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);
|
|
|
|
m_settings.m_modAFInput = checked ? FreeDVModSettings::FreeDVModInputCWTone : FreeDVModSettings::FreeDVModInputNone;
|
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
void FreeDVModGUI::on_mic_toggled(bool checked)
|
|
|
|
{
|
|
|
|
ui->play->setEnabled(!checked); // release other source inputs
|
|
|
|
ui->morseKeyer->setEnabled(!checked);
|
|
|
|
ui->tone->setEnabled(!checked); // release other source inputs
|
|
|
|
m_settings.m_modAFInput = checked ? FreeDVModSettings::FreeDVModInputAudio : FreeDVModSettings::FreeDVModInputNone;
|
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
void FreeDVModGUI::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);
|
|
|
|
|
|
|
|
FreeDVMod::MsgConfigureFileSourceSeek* message = FreeDVMod::MsgConfigureFileSourceSeek::create(value);
|
|
|
|
m_freeDVMod->getInputMessageQueue()->push(message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void FreeDVModGUI::on_showFileDialog_clicked(bool checked)
|
|
|
|
{
|
|
|
|
(void) checked;
|
|
|
|
QString fileName = QFileDialog::getOpenFileName(this,
|
|
|
|
tr("Open raw audio file"), ".", tr("Raw audio Files (*.raw)"), 0, QFileDialog::DontUseNativeDialog);
|
|
|
|
|
|
|
|
if (fileName != "")
|
|
|
|
{
|
|
|
|
m_fileName = fileName;
|
|
|
|
ui->recordFileText->setText(m_fileName);
|
|
|
|
ui->play->setEnabled(true);
|
|
|
|
configureFileName();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void FreeDVModGUI::configureFileName()
|
|
|
|
{
|
|
|
|
qDebug() << "FileSourceGui::configureFileName: " << m_fileName.toStdString().c_str();
|
|
|
|
FreeDVMod::MsgConfigureFileSourceName* message = FreeDVMod::MsgConfigureFileSourceName::create(m_fileName);
|
|
|
|
m_freeDVMod->getInputMessageQueue()->push(message);
|
|
|
|
}
|
|
|
|
|
|
|
|
void FreeDVModGUI::onWidgetRolled(QWidget* widget, bool rollDown)
|
|
|
|
{
|
|
|
|
(void) widget;
|
|
|
|
(void) rollDown;
|
2021-11-24 04:50:42 -05:00
|
|
|
|
dd maximize button to MainSpectrum and expandible Channels and Features.
Add sizeToContents in ChannelGUI and FeatureGUI, called when widget is
rolled, so we can remove resizing code from all of the individual
channels and features.
In RollupContents, use minimumSizeHint for calculated size, so that
minimumWidth can come from .ui file.
In DeviceGUI::sizeToContents(), call adjustSize(), so Device GUIs start
out at minimum needed size (which should restore appearance prior to
last patch).
In stackSubWindows, use available space for channels if no
spectrum/features present.
In stackSubWindows, fix spectrum from being sized too big, resulting in
scroll bars appearing.
Reset user-defined channel width in stackSubWindows, when channels are
removed.
Don't stack maximized windows.
There's one hack in Channel/FeatureGUI::maximizeWindow(). It seems that
when maximimzing a window, QOpenGLWidgets aren't always paint properly
immediately afterwards, so the code forces an additional update. I can't
see why the first call to paintGL doesn't work.
2022-11-11 07:24:27 -05:00
|
|
|
getRollupContents()->saveState(m_rollupState);
|
2021-11-24 04:50:42 -05:00
|
|
|
applySettings();
|
2019-02-22 01:17:27 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void FreeDVModGUI::onMenuDialogCalled(const QPoint &p)
|
|
|
|
{
|
2019-05-09 15:07:05 -04: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);
|
2022-04-17 19:42:03 -04:00
|
|
|
dialog.setDefaultTitle(m_displayedName);
|
|
|
|
|
|
|
|
if (m_deviceUISet->m_deviceMIMOEngine)
|
|
|
|
{
|
|
|
|
dialog.setNumberOfStreams(m_freeDVMod->getNumberOfDeviceStreams());
|
|
|
|
dialog.setStreamIndex(m_settings.m_streamIndex);
|
|
|
|
}
|
2019-05-09 15:07:05 -04:00
|
|
|
|
|
|
|
dialog.move(p);
|
2022-12-20 05:31:15 -05:00
|
|
|
new DialogPositioner(&dialog, false);
|
2019-05-09 15:07:05 -04:00
|
|
|
dialog.exec();
|
|
|
|
|
|
|
|
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);
|
2022-04-12 10:20:45 -04:00
|
|
|
setTitle(m_channelMarker.getTitle());
|
2019-05-09 15:07:05 -04:00
|
|
|
setTitleColor(m_settings.m_rgbColor);
|
|
|
|
|
2022-04-17 19:42:03 -04:00
|
|
|
if (m_deviceUISet->m_deviceMIMOEngine)
|
|
|
|
{
|
|
|
|
m_settings.m_streamIndex = dialog.getSelectedStreamIndex();
|
|
|
|
m_channelMarker.clearStreamIndexes();
|
|
|
|
m_channelMarker.addStreamIndex(m_settings.m_streamIndex);
|
|
|
|
updateIndexLabel();
|
|
|
|
}
|
2019-11-17 05:09:07 -05:00
|
|
|
|
|
|
|
applySettings();
|
|
|
|
}
|
2019-02-22 01:17:27 -05:00
|
|
|
|
2019-05-09 15:07:05 -04:00
|
|
|
resetContextMenuType();
|
2019-02-22 01:17:27 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
FreeDVModGUI::FreeDVModGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSampleSource *channelTx, QWidget* parent) :
|
2020-10-04 00:16:15 -04:00
|
|
|
ChannelGUI(parent),
|
2019-02-22 01:17:27 -05:00
|
|
|
ui(new Ui::FreeDVModGUI),
|
|
|
|
m_pluginAPI(pluginAPI),
|
|
|
|
m_deviceUISet(deviceUISet),
|
|
|
|
m_channelMarker(this),
|
2022-04-13 05:08:21 -04:00
|
|
|
m_deviceCenterFrequency(0),
|
|
|
|
m_basebandSampleRate(1),
|
2019-02-22 01:17:27 -05:00
|
|
|
m_doApplySettings(true),
|
|
|
|
m_spectrumRate(6000),
|
|
|
|
m_recordLength(0),
|
|
|
|
m_recordSampleRate(48000),
|
|
|
|
m_samplesCount(0),
|
2020-08-02 04:11:41 -04:00
|
|
|
m_audioSampleRate(-1),
|
2019-02-22 01:17:27 -05:00
|
|
|
m_tickCount(0),
|
|
|
|
m_enableNavTime(false)
|
|
|
|
{
|
|
|
|
setAttribute(Qt::WA_DeleteOnClose, true);
|
2022-04-24 06:28:56 -04:00
|
|
|
m_helpURL = "plugins/channeltx/modfreedv/readme.md";
|
|
|
|
RollupContents *rollupContents = getRollupContents();
|
|
|
|
ui->setupUi(rollupContents);
|
|
|
|
setSizePolicy(rollupContents->sizePolicy());
|
|
|
|
rollupContents->arrangeRollups();
|
|
|
|
connect(rollupContents, SIGNAL(widgetRolled(QWidget*,bool)), this, SLOT(onWidgetRolled(QWidget*,bool)));
|
2019-02-22 01:17:27 -05:00
|
|
|
connect(this, SIGNAL(customContextMenuRequested(const QPoint &)), this, SLOT(onMenuDialogCalled(const QPoint &)));
|
|
|
|
|
|
|
|
m_freeDVMod = (FreeDVMod*) channelTx;
|
2020-04-30 03:57:05 -04:00
|
|
|
m_spectrumVis = m_freeDVMod->getSpectrumVis();
|
|
|
|
m_spectrumVis->setGLSpectrum(ui->glSpectrum);
|
2019-02-22 01:17:27 -05:00
|
|
|
m_freeDVMod->setMessageQueueToGUI(getInputMessageQueue());
|
|
|
|
|
|
|
|
resetToDefaults();
|
|
|
|
|
2023-04-09 05:47:50 -04:00
|
|
|
ui->spectrumGUI->setBuddies(m_spectrumVis, ui->glSpectrum);
|
|
|
|
|
|
|
|
ui->glSpectrum->setCenterFrequency(m_spectrumRate/2);
|
2019-02-22 01:17:27 -05:00
|
|
|
ui->glSpectrum->setSampleRate(m_spectrumRate);
|
2023-04-09 05:47:50 -04:00
|
|
|
|
|
|
|
SpectrumSettings spectrumSettings = m_spectrumVis->getSettings();
|
|
|
|
spectrumSettings.m_displayWaterfall = true;
|
|
|
|
spectrumSettings.m_displayMaxHold = true;
|
|
|
|
spectrumSettings.m_ssb = true;
|
|
|
|
SpectrumVis::MsgConfigureSpectrumVis *msg = SpectrumVis::MsgConfigureSpectrumVis::create(spectrumSettings, false);
|
|
|
|
m_spectrumVis->getInputMessageQueue()->push(msg);
|
2019-02-22 01:17:27 -05:00
|
|
|
|
2020-10-12 15:59:04 -04:00
|
|
|
connect(&MainCore::instance()->getMasterTimer(), SIGNAL(timeout()), this, SLOT(tick()));
|
2019-02-22 01:17:27 -05:00
|
|
|
|
|
|
|
CRightClickEnabler *audioMuteRightClickEnabler = new CRightClickEnabler(ui->mic);
|
2022-12-28 14:33:28 -05:00
|
|
|
connect(audioMuteRightClickEnabler, SIGNAL(rightClick(const QPoint &)), this, SLOT(audioSelect(const QPoint &)));
|
2019-02-22 01:17:27 -05:00
|
|
|
|
|
|
|
ui->deltaFrequencyLabel->setText(QString("%1f").arg(QChar(0x94, 0x03)));
|
|
|
|
ui->deltaFrequency->setColorMapper(ColorMapper(ColorMapper::GrayGold));
|
|
|
|
ui->deltaFrequency->setValueRange(false, 7, -9999999, 9999999);
|
|
|
|
|
2019-05-30 12:38:10 -04:00
|
|
|
m_channelMarker.setSourceOrSinkStream(false);
|
2019-02-22 01:17:27 -05:00
|
|
|
m_channelMarker.setVisible(true);
|
|
|
|
|
|
|
|
m_deviceUISet->addChannelMarker(&m_channelMarker);
|
|
|
|
|
|
|
|
connect(&m_channelMarker, SIGNAL(changedByCursor()), this, SLOT(channelMarkerChangedByCursor()));
|
|
|
|
|
2019-07-29 19:31:46 -04:00
|
|
|
ui->cwKeyerGUI->setCWKeyer(m_freeDVMod->getCWKeyer());
|
2019-02-22 01:17:27 -05:00
|
|
|
|
|
|
|
m_settings.setChannelMarker(&m_channelMarker);
|
|
|
|
m_settings.setSpectrumGUI(ui->spectrumGUI);
|
|
|
|
m_settings.setCWKeyerGUI(ui->cwKeyerGUI);
|
2022-01-08 23:27:12 -05:00
|
|
|
m_settings.setRollupState(&m_rollupState);
|
2019-02-22 01:17:27 -05:00
|
|
|
|
|
|
|
connect(getInputMessageQueue(), SIGNAL(messageEnqueued()), this, SLOT(handleSourceMessages()));
|
2019-11-14 19:04:24 -05:00
|
|
|
m_freeDVMod->setLevelMeter(ui->volumeMeter);
|
2019-02-22 01:17:27 -05:00
|
|
|
|
|
|
|
displaySettings();
|
2022-04-12 10:20:45 -04:00
|
|
|
makeUIConnections();
|
2023-11-13 15:51:03 -05:00
|
|
|
m_resizer.enableChildMouseTracking();
|
2019-02-22 01:17:27 -05:00
|
|
|
applyBandwidths(5 - ui->spanLog2->value(), true); // does applySettings(true)
|
2022-12-20 05:31:15 -05:00
|
|
|
DialPopup::addPopupsToChildDials(this);
|
2019-02-22 01:17:27 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
FreeDVModGUI::~FreeDVModGUI()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool FreeDVModGUI::blockApplySettings(bool block)
|
|
|
|
{
|
|
|
|
bool ret = !m_doApplySettings;
|
|
|
|
m_doApplySettings = !block;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void FreeDVModGUI::applySettings(bool force)
|
|
|
|
{
|
|
|
|
if (m_doApplySettings)
|
|
|
|
{
|
|
|
|
FreeDVMod::MsgConfigureFreeDVMod *msg = FreeDVMod::MsgConfigureFreeDVMod::create(m_settings, force);
|
|
|
|
m_freeDVMod->getInputMessageQueue()->push(msg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void FreeDVModGUI::applyBandwidths(int spanLog2, bool force)
|
2019-04-17 11:34:02 -04:00
|
|
|
{
|
|
|
|
displayBandwidths(spanLog2);
|
|
|
|
m_settings.m_spanLog2 = spanLog2;
|
|
|
|
applySettings(force);
|
|
|
|
}
|
|
|
|
|
|
|
|
void FreeDVModGUI::displayBandwidths(int spanLog2)
|
2019-02-22 01:17:27 -05:00
|
|
|
{
|
2019-02-23 23:08:41 -05:00
|
|
|
m_spectrumRate = m_freeDVMod->getModemSampleRate() / (1<<spanLog2);
|
|
|
|
int bwMax = m_freeDVMod->getModemSampleRate() / (100*(1<<spanLog2));
|
2019-02-22 01:17:27 -05:00
|
|
|
|
2019-04-17 11:34:02 -04:00
|
|
|
qDebug() << "FreeDVModGUI::displayBandwidths:"
|
2019-02-22 01:17:27 -05:00
|
|
|
<< " spanLog2: " << spanLog2
|
|
|
|
<< " m_spectrumRate: " << m_spectrumRate
|
2019-02-24 19:15:10 -05:00
|
|
|
<< " bwMax: " << bwMax;
|
2019-02-22 01:17:27 -05:00
|
|
|
|
|
|
|
QString spanStr = QString::number(bwMax/10.0, 'f', 1);
|
|
|
|
|
2019-02-22 04:54:50 -05:00
|
|
|
ui->spanText->setText(tr("%1k").arg(spanStr));
|
2023-07-08 19:19:39 -04:00
|
|
|
ui->glSpectrum->setCenterFrequency(0);
|
|
|
|
ui->glSpectrum->setSampleRate(2*m_spectrumRate);
|
2019-02-22 09:30:51 -05:00
|
|
|
ui->glSpectrum->setLsbDisplay(false);
|
2023-07-08 19:19:39 -04:00
|
|
|
ui->glSpectrum->setSsbSpectrum(true);
|
2019-02-22 01:17:27 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void FreeDVModGUI::displaySettings()
|
|
|
|
{
|
|
|
|
m_channelMarker.blockSignals(true);
|
|
|
|
m_channelMarker.setCenterFrequency(m_settings.m_inputFrequencyOffset);
|
|
|
|
m_channelMarker.setTitle(m_settings.m_title);
|
2019-02-22 09:30:51 -05:00
|
|
|
m_channelMarker.setBandwidth(FreeDVModSettings::getHiCutoff(m_settings.m_freeDVMode) * 2);
|
|
|
|
m_channelMarker.setLowCutoff(FreeDVModSettings::getLowCutoff(m_settings.m_freeDVMode));
|
|
|
|
m_channelMarker.setSidebands(ChannelMarker::usb);
|
2019-02-22 01:17:27 -05:00
|
|
|
m_channelMarker.blockSignals(false);
|
|
|
|
m_channelMarker.setColor(m_settings.m_rgbColor);
|
|
|
|
|
|
|
|
setTitleColor(m_settings.m_rgbColor);
|
|
|
|
setWindowTitle(m_channelMarker.getTitle());
|
2022-04-12 10:20:45 -04:00
|
|
|
setTitle(m_channelMarker.getTitle());
|
2022-04-17 19:42:03 -04:00
|
|
|
updateIndexLabel();
|
2019-02-22 01:17:27 -05:00
|
|
|
|
|
|
|
blockApplySettings(true);
|
|
|
|
|
2019-04-17 11:34:02 -04:00
|
|
|
ui->freeDVMode->setCurrentIndex((int) m_settings.m_freeDVMode);
|
2019-02-22 01:17:27 -05:00
|
|
|
ui->audioMute->setChecked(m_settings.m_audioMute);
|
|
|
|
ui->playLoop->setChecked(m_settings.m_playLoop);
|
|
|
|
|
|
|
|
// Prevent uncontrolled triggering of applyBandwidths
|
|
|
|
ui->spanLog2->blockSignals(true);
|
|
|
|
ui->spanLog2->setValue(5 - m_settings.m_spanLog2);
|
2019-04-17 11:34:02 -04:00
|
|
|
displayBandwidths(m_settings.m_spanLog2);
|
2019-02-22 01:17:27 -05:00
|
|
|
ui->spanLog2->blockSignals(false);
|
|
|
|
|
2019-02-26 19:56:27 -05:00
|
|
|
ui->gaugeInput->setChecked(m_settings.m_gaugeInputElseModem);
|
|
|
|
|
2019-02-22 01:17:27 -05:00
|
|
|
// The only one of the four signals triggering applyBandwidths will trigger it once only with all other values
|
|
|
|
// set correctly and therefore validate the settings and apply them to dependent widgets
|
|
|
|
|
|
|
|
ui->deltaFrequency->setValue(m_settings.m_inputFrequencyOffset);
|
|
|
|
|
|
|
|
ui->toneFrequency->setValue(roundf(m_settings.m_toneFrequency / 10.0));
|
|
|
|
ui->toneFrequencyText->setText(QString("%1k").arg(m_settings.m_toneFrequency / 1000.0, 0, 'f', 2));
|
|
|
|
|
|
|
|
ui->volume->setValue(m_settings.m_volumeFactor * 10.0);
|
|
|
|
ui->volumeText->setText(QString("%1").arg(m_settings.m_volumeFactor, 0, 'f', 1));
|
|
|
|
|
|
|
|
ui->tone->setEnabled((m_settings.m_modAFInput == FreeDVModSettings::FreeDVModInputAF::FreeDVModInputTone)
|
|
|
|
|| (m_settings.m_modAFInput == FreeDVModSettings::FreeDVModInputAF::FreeDVModInputNone));
|
|
|
|
ui->mic->setEnabled((m_settings.m_modAFInput == FreeDVModSettings::FreeDVModInputAF::FreeDVModInputAudio)
|
|
|
|
|| (m_settings.m_modAFInput == FreeDVModSettings::FreeDVModInputAF::FreeDVModInputNone));
|
|
|
|
ui->play->setEnabled((m_settings.m_modAFInput == FreeDVModSettings::FreeDVModInputAF::FreeDVModInputFile)
|
|
|
|
|| (m_settings.m_modAFInput == FreeDVModSettings::FreeDVModInputAF::FreeDVModInputNone));
|
|
|
|
ui->morseKeyer->setEnabled((m_settings.m_modAFInput == FreeDVModSettings::FreeDVModInputAF::FreeDVModInputCWTone)
|
|
|
|
|| (m_settings.m_modAFInput == FreeDVModSettings::FreeDVModInputAF::FreeDVModInputNone));
|
|
|
|
|
|
|
|
ui->tone->setChecked(m_settings.m_modAFInput == FreeDVModSettings::FreeDVModInputAF::FreeDVModInputTone);
|
|
|
|
ui->mic->setChecked(m_settings.m_modAFInput == FreeDVModSettings::FreeDVModInputAF::FreeDVModInputAudio);
|
|
|
|
ui->play->setChecked(m_settings.m_modAFInput == FreeDVModSettings::FreeDVModInputAF::FreeDVModInputFile);
|
|
|
|
ui->morseKeyer->setChecked(m_settings.m_modAFInput == FreeDVModSettings::FreeDVModInputAF::FreeDVModInputCWTone);
|
|
|
|
|
2022-04-12 10:20:45 -04:00
|
|
|
getRollupContents()->restoreState(m_rollupState);
|
2022-04-13 05:08:21 -04:00
|
|
|
updateAbsoluteCenterFrequency();
|
2019-02-22 01:17:27 -05:00
|
|
|
blockApplySettings(false);
|
|
|
|
}
|
|
|
|
|
2022-04-22 13:21:24 -04:00
|
|
|
void FreeDVModGUI::leaveEvent(QEvent* event)
|
2019-02-22 01:17:27 -05:00
|
|
|
{
|
|
|
|
m_channelMarker.setHighlighted(false);
|
2022-04-22 13:21:24 -04:00
|
|
|
ChannelGUI::leaveEvent(event);
|
2019-02-22 01:17:27 -05:00
|
|
|
}
|
|
|
|
|
2022-11-17 09:36:12 -05:00
|
|
|
void FreeDVModGUI::enterEvent(EnterEventType* event)
|
2019-02-22 01:17:27 -05:00
|
|
|
{
|
|
|
|
m_channelMarker.setHighlighted(true);
|
2022-04-22 13:21:24 -04:00
|
|
|
ChannelGUI::enterEvent(event);
|
2019-02-22 01:17:27 -05:00
|
|
|
}
|
|
|
|
|
2022-12-28 14:33:28 -05:00
|
|
|
void FreeDVModGUI::audioSelect(const QPoint& p)
|
2019-02-22 01:17:27 -05:00
|
|
|
{
|
|
|
|
qDebug("FreeDVModGUI::audioSelect");
|
|
|
|
AudioSelectDialog audioSelect(DSPEngine::instance()->getAudioDeviceManager(), m_settings.m_audioDeviceName, true); // true for input
|
2022-12-28 14:33:28 -05:00
|
|
|
audioSelect.move(p);
|
2023-11-09 17:30:34 -05:00
|
|
|
new DialogPositioner(&audioSelect, false);
|
2019-02-22 01:17:27 -05:00
|
|
|
audioSelect.exec();
|
|
|
|
|
|
|
|
if (audioSelect.m_selected)
|
|
|
|
{
|
|
|
|
m_settings.m_audioDeviceName = audioSelect.m_audioDeviceName;
|
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void FreeDVModGUI::tick()
|
|
|
|
{
|
|
|
|
double powDb = CalcDb::dbPower(m_freeDVMod->getMagSq());
|
|
|
|
m_channelPowerDbAvg(powDb);
|
|
|
|
ui->channelPower->setText(tr("%1 dB").arg(m_channelPowerDbAvg.asDouble(), 0, 'f', 1));
|
|
|
|
|
2020-08-02 04:11:41 -04:00
|
|
|
int audioSampleRate = m_freeDVMod->getAudioSampleRate();
|
|
|
|
|
|
|
|
if (audioSampleRate != m_audioSampleRate)
|
|
|
|
{
|
|
|
|
if (audioSampleRate < 0) {
|
|
|
|
ui->mic->setColor(QColor("red"));
|
|
|
|
} else {
|
|
|
|
ui->mic->resetColor();
|
|
|
|
}
|
|
|
|
|
|
|
|
m_audioSampleRate = audioSampleRate;
|
|
|
|
}
|
|
|
|
|
2019-02-22 01:17:27 -05:00
|
|
|
if (((++m_tickCount & 0xf) == 0) && (m_settings.m_modAFInput == FreeDVModSettings::FreeDVModInputFile))
|
|
|
|
{
|
|
|
|
FreeDVMod::MsgConfigureFileSourceStreamTiming* message = FreeDVMod::MsgConfigureFileSourceStreamTiming::create();
|
|
|
|
m_freeDVMod->getInputMessageQueue()->push(message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void FreeDVModGUI::updateWithStreamData()
|
|
|
|
{
|
|
|
|
QTime recordLength(0, 0, 0, 0);
|
|
|
|
recordLength = recordLength.addSecs(m_recordLength);
|
|
|
|
QString s_time = recordLength.toString("HH:mm:ss");
|
|
|
|
ui->recordLengthText->setText(s_time);
|
|
|
|
updateWithStreamTime();
|
|
|
|
}
|
|
|
|
|
|
|
|
void FreeDVModGUI::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);
|
|
|
|
QString s_timems = t.toString("HH:mm:ss.zzz");
|
|
|
|
QString s_time = t.toString("HH:mm:ss");
|
|
|
|
ui->relTimeText->setText(s_timems);
|
|
|
|
|
|
|
|
if (!m_enableNavTime)
|
|
|
|
{
|
|
|
|
float posRatio = (float) t_sec / (float) m_recordLength;
|
|
|
|
ui->navTimeSlider->setValue((int) (posRatio * 100.0));
|
|
|
|
}
|
|
|
|
}
|
2022-04-12 10:20:45 -04:00
|
|
|
|
|
|
|
void FreeDVModGUI::makeUIConnections()
|
|
|
|
{
|
|
|
|
QObject::connect(ui->deltaFrequency, &ValueDialZ::changed, this, &FreeDVModGUI::on_deltaFrequency_changed);
|
|
|
|
QObject::connect(ui->gaugeInput, &QCheckBox::toggled, this, &FreeDVModGUI::on_gaugeInput_toggled);
|
|
|
|
QObject::connect(ui->volume, &QDial::valueChanged, this, &FreeDVModGUI::on_volume_valueChanged);
|
|
|
|
QObject::connect(ui->audioMute, &QToolButton::toggled, this, &FreeDVModGUI::on_audioMute_toggled);
|
|
|
|
QObject::connect(ui->freeDVMode, QOverload<int>::of(&QComboBox::currentIndexChanged), this, &FreeDVModGUI::on_freeDVMode_currentIndexChanged);
|
|
|
|
QObject::connect(ui->tone, &ButtonSwitch::toggled, this, &FreeDVModGUI::on_tone_toggled);
|
|
|
|
QObject::connect(ui->toneFrequency, &QDial::valueChanged, this, &FreeDVModGUI::on_toneFrequency_valueChanged);
|
|
|
|
QObject::connect(ui->mic, &ButtonSwitch::toggled, this, &FreeDVModGUI::on_mic_toggled);
|
|
|
|
QObject::connect(ui->play, &ButtonSwitch::toggled, this, &FreeDVModGUI::on_play_toggled);
|
|
|
|
QObject::connect(ui->playLoop, &ButtonSwitch::toggled, this, &FreeDVModGUI::on_playLoop_toggled);
|
|
|
|
QObject::connect(ui->morseKeyer, &ButtonSwitch::toggled, this, &FreeDVModGUI::on_morseKeyer_toggled);
|
|
|
|
QObject::connect(ui->navTimeSlider, &QSlider::valueChanged, this, &FreeDVModGUI::on_navTimeSlider_valueChanged);
|
|
|
|
QObject::connect(ui->showFileDialog, &QPushButton::clicked, this, &FreeDVModGUI::on_showFileDialog_clicked);
|
2022-05-26 12:06:10 -04:00
|
|
|
QObject::connect(ui->spanLog2, &QSlider::valueChanged, this, &FreeDVModGUI::on_spanLog2_valueChanged);
|
2022-04-12 10:20:45 -04:00
|
|
|
}
|
2022-04-13 05:08:21 -04:00
|
|
|
|
|
|
|
void FreeDVModGUI::updateAbsoluteCenterFrequency()
|
|
|
|
{
|
|
|
|
setStatusFrequency(m_deviceCenterFrequency + m_settings.m_inputFrequencyOffset);
|
|
|
|
}
|