| 
									
										
										
										
											2019-05-02 02:02:40 +00:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | // Copyright (C) 2018 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                  //
 | 
					
						
							|  |  |  | // (at your option) any later version.                                           //
 | 
					
						
							|  |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // 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 <QLocale>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "device/deviceuiset.h"
 | 
					
						
							|  |  |  | #include "gui/basicchannelsettingsdialog.h"
 | 
					
						
							| 
									
										
										
										
											2019-09-22 23:25:17 +00:00
										 |  |  | #include "gui/devicestreamselectiondialog.h"
 | 
					
						
							| 
									
										
										
										
											2019-05-02 02:02:40 +00:00
										 |  |  | #include "dsp/hbfilterchainconverter.h"
 | 
					
						
							| 
									
										
										
										
											2022-04-13 09:08:21 +00:00
										 |  |  | #include "dsp/dspcommands.h"
 | 
					
						
							| 
									
										
										
										
											2019-05-02 02:02:40 +00:00
										 |  |  | #include "mainwindow.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "localsinkgui.h"
 | 
					
						
							|  |  |  | #include "localsink.h"
 | 
					
						
							|  |  |  | #include "ui_localsinkgui.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | LocalSinkGUI* LocalSinkGUI::create(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSampleSink *channelRx) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     LocalSinkGUI* gui = new LocalSinkGUI(pluginAPI, deviceUISet, channelRx); | 
					
						
							|  |  |  |     return gui; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void LocalSinkGUI::destroy() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     delete this; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void LocalSinkGUI::resetToDefaults() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_settings.resetToDefaults(); | 
					
						
							|  |  |  |     displaySettings(); | 
					
						
							|  |  |  |     applySettings(true); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | QByteArray LocalSinkGUI::serialize() const | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return m_settings.serialize(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool LocalSinkGUI::deserialize(const QByteArray& data) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-12-08 09:09:24 +00:00
										 |  |  |     updateLocalDevices(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (m_settings.deserialize(data)) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-05-02 02:02:40 +00:00
										 |  |  |         displaySettings(); | 
					
						
							|  |  |  |         applySettings(true); | 
					
						
							|  |  |  |         return true; | 
					
						
							| 
									
										
										
										
											2019-12-08 09:09:24 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-05-02 02:02:40 +00:00
										 |  |  |         resetToDefaults(); | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool LocalSinkGUI::handleMessage(const Message& message) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2022-04-13 09:08:21 +00:00
										 |  |  |     if (DSPSignalNotification::match(message)) | 
					
						
							| 
									
										
										
										
											2019-05-02 02:02:40 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2022-04-13 09:08:21 +00:00
										 |  |  |         DSPSignalNotification& notif = (DSPSignalNotification&) message; | 
					
						
							| 
									
										
										
										
											2019-05-02 02:02:40 +00:00
										 |  |  |         //m_channelMarker.setBandwidth(notif.getSampleRate());
 | 
					
						
							| 
									
										
										
										
											2022-04-13 09:08:21 +00:00
										 |  |  |         m_deviceCenterFrequency = notif.getCenterFrequency(); | 
					
						
							| 
									
										
										
										
											2019-12-08 09:09:24 +00:00
										 |  |  |         m_basebandSampleRate = notif.getSampleRate(); | 
					
						
							| 
									
										
										
										
											2022-04-13 09:08:21 +00:00
										 |  |  |         updateAbsoluteCenterFrequency(); | 
					
						
							| 
									
										
										
										
											2019-05-02 02:02:40 +00:00
										 |  |  |         displayRateAndShift(); | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else if (LocalSink::MsgConfigureLocalSink::match(message)) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         const LocalSink::MsgConfigureLocalSink& cfg = (LocalSink::MsgConfigureLocalSink&) message; | 
					
						
							|  |  |  |         m_settings = cfg.getSettings(); | 
					
						
							|  |  |  |         blockApplySettings(true); | 
					
						
							| 
									
										
										
										
											2021-12-02 22:54:39 +00:00
										 |  |  |         m_channelMarker.updateSettings(static_cast<const ChannelMarker*>(m_settings.m_channelMarker)); | 
					
						
							| 
									
										
										
										
											2019-05-02 02:02:40 +00:00
										 |  |  |         displaySettings(); | 
					
						
							|  |  |  |         blockApplySettings(false); | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | LocalSinkGUI::LocalSinkGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSampleSink *channelrx, QWidget* parent) : | 
					
						
							| 
									
										
										
										
											2020-10-04 04:16:15 +00:00
										 |  |  |         ChannelGUI(parent), | 
					
						
							| 
									
										
										
										
											2019-05-02 02:02:40 +00:00
										 |  |  |         ui(new Ui::LocalSinkGUI), | 
					
						
							|  |  |  |         m_pluginAPI(pluginAPI), | 
					
						
							|  |  |  |         m_deviceUISet(deviceUISet), | 
					
						
							| 
									
										
										
										
											2022-04-13 09:08:21 +00:00
										 |  |  |         m_deviceCenterFrequency(0), | 
					
						
							| 
									
										
										
										
											2019-12-08 09:09:24 +00:00
										 |  |  |         m_basebandSampleRate(0), | 
					
						
							| 
									
										
										
										
											2019-05-02 02:02:40 +00:00
										 |  |  |         m_tickCount(0) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2022-04-12 14:20:45 +00:00
										 |  |  |     ui->setupUi(getRollupContents()); | 
					
						
							|  |  |  |     getRollupContents()->arrangeRollups(); | 
					
						
							| 
									
										
										
										
											2021-11-24 11:31:51 +00:00
										 |  |  |     m_helpURL = "plugins/channelrx/localsink/readme.md"; | 
					
						
							| 
									
										
										
										
											2019-05-02 02:02:40 +00:00
										 |  |  |     setAttribute(Qt::WA_DeleteOnClose, true); | 
					
						
							| 
									
										
										
										
											2022-04-12 14:20:45 +00:00
										 |  |  |     connect(getRollupContents(), SIGNAL(widgetRolled(QWidget*,bool)), this, SLOT(onWidgetRolled(QWidget*,bool))); | 
					
						
							| 
									
										
										
										
											2019-05-02 02:02:40 +00:00
										 |  |  |     connect(this, SIGNAL(customContextMenuRequested(const QPoint &)), this, SLOT(onMenuDialogCalled(const QPoint &))); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     m_localSink = (LocalSink*) channelrx; | 
					
						
							|  |  |  |     m_localSink->setMessageQueueToGUI(getInputMessageQueue()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     m_channelMarker.blockSignals(true); | 
					
						
							|  |  |  |     m_channelMarker.setColor(m_settings.m_rgbColor); | 
					
						
							|  |  |  |     m_channelMarker.setCenterFrequency(0); | 
					
						
							| 
									
										
										
										
											2019-05-10 11:20:30 +00:00
										 |  |  |     m_channelMarker.setTitle("Local Sink"); | 
					
						
							| 
									
										
										
										
											2019-05-02 02:02:40 +00:00
										 |  |  |     m_channelMarker.blockSignals(false); | 
					
						
							|  |  |  |     m_channelMarker.setVisible(true); // activate signal on the last setting only
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     m_settings.setChannelMarker(&m_channelMarker); | 
					
						
							| 
									
										
										
										
											2022-01-09 04:27:12 +00:00
										 |  |  |     m_settings.setRollupState(&m_rollupState); | 
					
						
							| 
									
										
										
										
											2019-05-02 02:02:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     m_deviceUISet->addChannelMarker(&m_channelMarker); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     connect(getInputMessageQueue(), SIGNAL(messageEnqueued()), this, SLOT(handleSourceMessages())); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     updateLocalDevices(); | 
					
						
							|  |  |  |     displaySettings(); | 
					
						
							| 
									
										
										
										
											2022-04-12 14:20:45 +00:00
										 |  |  |     makeUIConnections(); | 
					
						
							| 
									
										
										
										
											2019-05-02 02:02:40 +00:00
										 |  |  |     applySettings(true); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | LocalSinkGUI::~LocalSinkGUI() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     delete ui; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void LocalSinkGUI::blockApplySettings(bool block) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_doApplySettings = !block; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void LocalSinkGUI::applySettings(bool force) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (m_doApplySettings) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         setTitleColor(m_channelMarker.getColor()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         LocalSink::MsgConfigureLocalSink* message = LocalSink::MsgConfigureLocalSink::create(m_settings, force); | 
					
						
							|  |  |  |         m_localSink->getInputMessageQueue()->push(message); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void LocalSinkGUI::displaySettings() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_channelMarker.blockSignals(true); | 
					
						
							|  |  |  |     m_channelMarker.setCenterFrequency(0); | 
					
						
							|  |  |  |     m_channelMarker.setTitle(m_settings.m_title); | 
					
						
							| 
									
										
										
										
											2019-12-08 09:09:24 +00:00
										 |  |  |     m_channelMarker.setBandwidth(m_basebandSampleRate / (1<<m_settings.m_log2Decim)); | 
					
						
							| 
									
										
										
										
											2019-05-02 02:02:40 +00:00
										 |  |  |     m_channelMarker.setMovable(false); // do not let user move the center arbitrarily
 | 
					
						
							|  |  |  |     m_channelMarker.blockSignals(false); | 
					
						
							|  |  |  |     m_channelMarker.setColor(m_settings.m_rgbColor); // activate signal on the last setting only
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     setTitleColor(m_settings.m_rgbColor); | 
					
						
							|  |  |  |     setWindowTitle(m_channelMarker.getTitle()); | 
					
						
							| 
									
										
										
										
											2022-04-12 14:20:45 +00:00
										 |  |  |     setTitle(m_channelMarker.getTitle()); | 
					
						
							| 
									
										
										
										
											2019-05-02 02:02:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     blockApplySettings(true); | 
					
						
							| 
									
										
										
										
											2019-12-09 09:35:21 +00:00
										 |  |  |     int index = getLocalDeviceIndexInCombo(m_settings.m_localDeviceIndex); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (index >= 0) { | 
					
						
							|  |  |  |         ui->localDevice->setCurrentIndex(index); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ui->localDevicePlay->setChecked(m_settings.m_play); | 
					
						
							| 
									
										
										
										
											2019-05-02 02:02:40 +00:00
										 |  |  |     ui->decimationFactor->setCurrentIndex(m_settings.m_log2Decim); | 
					
						
							|  |  |  |     applyDecimation(); | 
					
						
							| 
									
										
										
										
											2019-09-22 23:25:17 +00:00
										 |  |  |     displayStreamIndex(); | 
					
						
							| 
									
										
										
										
											2019-12-08 09:09:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-12 14:20:45 +00:00
										 |  |  |     getRollupContents()->restoreState(m_rollupState); | 
					
						
							| 
									
										
										
										
											2019-05-02 02:02:40 +00:00
										 |  |  |     blockApplySettings(false); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-22 23:25:17 +00:00
										 |  |  | void LocalSinkGUI::displayStreamIndex() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (m_deviceUISet->m_deviceMIMOEngine) { | 
					
						
							|  |  |  |         setStreamIndicator(tr("%1").arg(m_settings.m_streamIndex)); | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         setStreamIndicator("S"); // single channel indicator
 | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-02 02:02:40 +00:00
										 |  |  | void LocalSinkGUI::displayRateAndShift() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-12-08 09:09:24 +00:00
										 |  |  |     int shift = m_shiftFrequencyFactor * m_basebandSampleRate; | 
					
						
							|  |  |  |     double channelSampleRate = ((double) m_basebandSampleRate) / (1<<m_settings.m_log2Decim); | 
					
						
							| 
									
										
										
										
											2019-05-02 02:02:40 +00:00
										 |  |  |     QLocale loc; | 
					
						
							|  |  |  |     ui->offsetFrequencyText->setText(tr("%1 Hz").arg(loc.toString(shift))); | 
					
						
							|  |  |  |     ui->channelRateText->setText(tr("%1k").arg(QString::number(channelSampleRate / 1000.0, 'g', 5))); | 
					
						
							|  |  |  |     m_channelMarker.setCenterFrequency(shift); | 
					
						
							|  |  |  |     m_channelMarker.setBandwidth(channelSampleRate); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void LocalSinkGUI::updateLocalDevices() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     std::vector<uint32_t> localDevicesIndexes; | 
					
						
							|  |  |  |     m_localSink->getLocalDevices(localDevicesIndexes); | 
					
						
							|  |  |  |     ui->localDevice->clear(); | 
					
						
							|  |  |  |     std::vector<uint32_t>::const_iterator it = localDevicesIndexes.begin(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (; it != localDevicesIndexes.end(); ++it) { | 
					
						
							|  |  |  |         ui->localDevice->addItem(tr("%1").arg(*it), QVariant(*it)); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-08 09:09:24 +00:00
										 |  |  | int LocalSinkGUI::getLocalDeviceIndexInCombo(int localDeviceIndex) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int index = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (; index < ui->localDevice->count(); index++) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if (localDeviceIndex == ui->localDevice->itemData(index).toInt()) { | 
					
						
							|  |  |  |             return index; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return -1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-02 02:02:40 +00:00
										 |  |  | void LocalSinkGUI::leaveEvent(QEvent*) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_channelMarker.setHighlighted(false); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void LocalSinkGUI::enterEvent(QEvent*) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_channelMarker.setHighlighted(true); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void LocalSinkGUI::handleSourceMessages() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     Message* message; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     while ((message = getInputMessageQueue()->pop()) != 0) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if (handleMessage(*message)) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             delete message; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void LocalSinkGUI::onWidgetRolled(QWidget* widget, bool rollDown) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     (void) widget; | 
					
						
							|  |  |  |     (void) rollDown; | 
					
						
							| 
									
										
										
										
											2021-11-24 09:50:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-12 14:20:45 +00:00
										 |  |  |     getRollupContents()->saveState(m_rollupState); | 
					
						
							| 
									
										
										
										
											2021-11-24 09:50:42 +00:00
										 |  |  |     applySettings(); | 
					
						
							| 
									
										
										
										
											2019-05-02 02:02:40 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void LocalSinkGUI::onMenuDialogCalled(const QPoint &p) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-05-09 19:07:05 +00: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_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 14:20:45 +00:00
										 |  |  |         setTitle(m_channelMarker.getTitle()); | 
					
						
							| 
									
										
										
										
											2019-05-09 19:07:05 +00:00
										 |  |  |         setTitleColor(m_settings.m_rgbColor); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         applySettings(); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-09-22 23:25:17 +00:00
										 |  |  |     else if ((m_contextMenuType == ContextMenuStreamSettings) && (m_deviceUISet->m_deviceMIMOEngine)) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         DeviceStreamSelectionDialog dialog(this); | 
					
						
							|  |  |  |         dialog.setNumberOfStreams(m_localSink->getNumberOfDeviceStreams()); | 
					
						
							|  |  |  |         dialog.setStreamIndex(m_settings.m_streamIndex); | 
					
						
							|  |  |  |         dialog.move(p); | 
					
						
							|  |  |  |         dialog.exec(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         m_settings.m_streamIndex = dialog.getSelectedStreamIndex(); | 
					
						
							|  |  |  |         m_channelMarker.clearStreamIndexes(); | 
					
						
							|  |  |  |         m_channelMarker.addStreamIndex(m_settings.m_streamIndex); | 
					
						
							|  |  |  |         displayStreamIndex(); | 
					
						
							|  |  |  |         applySettings(); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-05-02 02:02:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-09 19:07:05 +00:00
										 |  |  |     resetContextMenuType(); | 
					
						
							| 
									
										
										
										
											2019-05-02 02:02:40 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void LocalSinkGUI::on_decimationFactor_currentIndexChanged(int index) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_settings.m_log2Decim = index; | 
					
						
							|  |  |  |     applyDecimation(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void LocalSinkGUI::on_position_valueChanged(int value) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_settings.m_filterChainHash = value; | 
					
						
							|  |  |  |     applyPosition(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void LocalSinkGUI::on_localDevice_currentIndexChanged(int index) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_settings.m_localDeviceIndex = ui->localDevice->itemData(index).toInt(); | 
					
						
							|  |  |  |     applySettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void LocalSinkGUI::on_localDevicesRefresh_clicked(bool checked) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     (void) checked; | 
					
						
							|  |  |  |     updateLocalDevices(); | 
					
						
							| 
									
										
										
										
											2019-12-08 09:09:24 +00:00
										 |  |  |     int index = getLocalDeviceIndexInCombo(m_settings.m_localDeviceIndex); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (index >= 0) { | 
					
						
							|  |  |  |         ui->localDevice->setCurrentIndex(index); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void LocalSinkGUI::on_localDevicePlay_toggled(bool checked) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_settings.m_play = checked; | 
					
						
							|  |  |  |     applySettings(); | 
					
						
							| 
									
										
										
										
											2019-05-02 02:02:40 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void LocalSinkGUI::applyDecimation() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint32_t maxHash = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (uint32_t i = 0; i < m_settings.m_log2Decim; i++) { | 
					
						
							|  |  |  |         maxHash *= 3; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ui->position->setMaximum(maxHash-1); | 
					
						
							|  |  |  |     ui->position->setValue(m_settings.m_filterChainHash); | 
					
						
							|  |  |  |     m_settings.m_filterChainHash = ui->position->value(); | 
					
						
							|  |  |  |     applyPosition(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void LocalSinkGUI::applyPosition() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     ui->filterChainIndex->setText(tr("%1").arg(m_settings.m_filterChainHash)); | 
					
						
							|  |  |  |     QString s; | 
					
						
							|  |  |  |     m_shiftFrequencyFactor = HBFilterChainConverter::convertToString(m_settings.m_log2Decim, m_settings.m_filterChainHash, s); | 
					
						
							|  |  |  |     ui->filterChainText->setText(s); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-13 09:08:21 +00:00
										 |  |  |     updateAbsoluteCenterFrequency(); | 
					
						
							| 
									
										
										
										
											2019-05-02 02:02:40 +00:00
										 |  |  |     displayRateAndShift(); | 
					
						
							| 
									
										
										
										
											2019-12-08 09:09:24 +00:00
										 |  |  |     applySettings(); | 
					
						
							| 
									
										
										
										
											2019-05-02 02:02:40 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void LocalSinkGUI::tick() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (++m_tickCount == 20) { // once per second
 | 
					
						
							|  |  |  |         m_tickCount = 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2022-04-12 14:20:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | void LocalSinkGUI::makeUIConnections() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     QObject::connect(ui->decimationFactor, QOverload<int>::of(&QComboBox::currentIndexChanged), this, &LocalSinkGUI::on_decimationFactor_currentIndexChanged); | 
					
						
							|  |  |  |     QObject::connect(ui->position, &QSlider::valueChanged, this, &LocalSinkGUI::on_position_valueChanged); | 
					
						
							|  |  |  |     QObject::connect(ui->localDevice, QOverload<int>::of(&QComboBox::currentIndexChanged), this, &LocalSinkGUI::on_localDevice_currentIndexChanged); | 
					
						
							|  |  |  |     QObject::connect(ui->localDevicesRefresh, &QPushButton::clicked, this, &LocalSinkGUI::on_localDevicesRefresh_clicked); | 
					
						
							|  |  |  |     QObject::connect(ui->localDevicePlay, &ButtonSwitch::toggled, this, &LocalSinkGUI::on_localDevicePlay_toggled); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2022-04-13 09:08:21 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | void LocalSinkGUI::updateAbsoluteCenterFrequency() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int shift = m_shiftFrequencyFactor * m_basebandSampleRate; | 
					
						
							|  |  |  |     setStatusFrequency(m_deviceCenterFrequency + shift); | 
					
						
							|  |  |  | } |