| 
									
										
										
										
											2023-11-19 13:31:45 +01:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | // Copyright (C) 2017-2019, 2022 Edouard Griffiths, F4EXB <f4exb06@gmail.com>        //
 | 
					
						
							|  |  |  | // Copyright (C) 2023 Jon Beniston, M7RCE <jon@beniston.com>                         //
 | 
					
						
							|  |  |  | //                                                                                   //
 | 
					
						
							|  |  |  | // 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/>.              //
 | 
					
						
							|  |  |  | ///////////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							| 
									
										
										
										
											2017-08-24 02:05:48 +02:00
										 |  |  | #include <QColorDialog>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "dsp/channelmarker.h"
 | 
					
						
							| 
									
										
										
										
											2023-08-24 15:51:50 +01:00
										 |  |  | #include "gui/pluginpresetsdialog.h"
 | 
					
						
							|  |  |  | #include "gui/dialogpositioner.h"
 | 
					
						
							|  |  |  | #include "channel/channelapi.h"
 | 
					
						
							|  |  |  | #include "channel/channelgui.h"
 | 
					
						
							|  |  |  | #include "maincore.h"
 | 
					
						
							| 
									
										
										
										
											2017-08-24 02:05:48 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "basicchannelsettingsdialog.h"
 | 
					
						
							|  |  |  | #include "ui_basicchannelsettingsdialog.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | BasicChannelSettingsDialog::BasicChannelSettingsDialog(ChannelMarker* marker, QWidget *parent) : | 
					
						
							|  |  |  |     QDialog(parent), | 
					
						
							|  |  |  |     ui(new Ui::BasicChannelSettingsDialog), | 
					
						
							| 
									
										
										
										
											2017-10-21 10:34:00 +02:00
										 |  |  |     m_channelMarker(marker), | 
					
						
							|  |  |  |     m_hasChanged(false) | 
					
						
							| 
									
										
										
										
											2017-08-24 02:05:48 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     ui->setupUi(this); | 
					
						
							|  |  |  |     ui->title->setText(m_channelMarker->getTitle()); | 
					
						
							|  |  |  |     m_color = m_channelMarker->getColor(); | 
					
						
							| 
									
										
										
										
											2017-08-27 09:22:50 +02:00
										 |  |  |     ui->fScaleDisplayType->setCurrentIndex((int) m_channelMarker->getFrequencyScaleDisplayType()); | 
					
						
							| 
									
										
										
										
											2018-12-13 23:52:09 +01:00
										 |  |  |     setUseReverseAPI(false); | 
					
						
							|  |  |  |     setReverseAPIAddress("127.0.0.1"); | 
					
						
							|  |  |  |     setReverseAPIPort(8888); | 
					
						
							| 
									
										
										
										
											2018-12-17 01:25:54 +01:00
										 |  |  |     setReverseAPIDeviceIndex(0); | 
					
						
							|  |  |  |     setReverseAPIChannelIndex(0); | 
					
						
							| 
									
										
										
										
											2017-08-24 02:05:48 +02:00
										 |  |  |     paintColor(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | BasicChannelSettingsDialog::~BasicChannelSettingsDialog() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     delete ui; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-13 23:52:09 +01:00
										 |  |  | void BasicChannelSettingsDialog::setUseReverseAPI(bool useReverseAPI) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_useReverseAPI = useReverseAPI; | 
					
						
							|  |  |  |     ui->reverseAPI->setChecked(m_useReverseAPI); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void BasicChannelSettingsDialog::setReverseAPIAddress(const QString& address) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_reverseAPIAddress = address; | 
					
						
							|  |  |  |     ui->reverseAPIAddress->setText(m_reverseAPIAddress); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void BasicChannelSettingsDialog::setReverseAPIPort(uint16_t port) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (port < 1024) { | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         m_reverseAPIPort = port; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ui->reverseAPIPort->setText(tr("%1").arg(m_reverseAPIPort)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-14 08:51:01 +01:00
										 |  |  | void BasicChannelSettingsDialog::setReverseAPIDeviceIndex(uint16_t deviceIndex) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_reverseAPIDeviceIndex = deviceIndex > 99 ? 99 : deviceIndex; | 
					
						
							|  |  |  |     ui->reverseAPIDeviceIndex->setText(tr("%1").arg(m_reverseAPIDeviceIndex)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void BasicChannelSettingsDialog::setReverseAPIChannelIndex(uint16_t channelIndex) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_reverseAPIChannelIndex = channelIndex > 99 ? 99 : channelIndex; | 
					
						
							| 
									
										
										
										
											2019-04-20 19:11:58 +02:00
										 |  |  |     ui->reverseAPIChannelIndex->setText(tr("%1").arg(m_reverseAPIChannelIndex)); | 
					
						
							| 
									
										
										
										
											2018-12-14 08:51:01 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-18 01:42:03 +02:00
										 |  |  | void BasicChannelSettingsDialog::setNumberOfStreams(int numberOfStreams) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     ui->streamIndex->setMaximum(numberOfStreams - 1); | 
					
						
							|  |  |  |     ui->streamIndex->setEnabled(true); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void BasicChannelSettingsDialog::setStreamIndex(int index) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_streamIndex = index; | 
					
						
							|  |  |  |     ui->streamIndex->setValue(index); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-24 02:05:48 +02:00
										 |  |  | void BasicChannelSettingsDialog::paintColor() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     QPixmap pm(24, 24); | 
					
						
							|  |  |  |     pm.fill(m_color); | 
					
						
							|  |  |  |     ui->colorBtn->setIcon(pm); | 
					
						
							|  |  |  |     ui->colorText->setText(tr("#%1%2%3") | 
					
						
							|  |  |  |         .arg(m_color.red(), 2, 16, QChar('0')) | 
					
						
							|  |  |  |         .arg(m_color.green(), 2, 16, QChar('0')) | 
					
						
							|  |  |  |         .arg(m_color.blue(), 2, 16, QChar('0'))); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void BasicChannelSettingsDialog::on_colorBtn_clicked() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     QColor c = m_color; | 
					
						
							| 
									
										
										
										
											2018-05-10 23:45:43 +02:00
										 |  |  |     c = QColorDialog::getColor(c, this, tr("Select Color for Channel"), QColorDialog::DontUseNativeDialog); | 
					
						
							| 
									
										
										
										
											2018-12-13 23:52:09 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (c.isValid()) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2017-08-24 02:05:48 +02:00
										 |  |  |         m_color = c; | 
					
						
							|  |  |  |         paintColor(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-13 23:52:09 +01:00
										 |  |  | void BasicChannelSettingsDialog::on_reverseAPI_toggled(bool checked) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_useReverseAPI = checked; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-27 09:31:55 +01:00
										 |  |  | void BasicChannelSettingsDialog::on_reverseAPIAddress_editingFinished() | 
					
						
							| 
									
										
										
										
											2018-12-13 23:52:09 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     m_reverseAPIAddress = ui->reverseAPIAddress->text(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-27 09:31:55 +01:00
										 |  |  | void BasicChannelSettingsDialog::on_reverseAPIPort_editingFinished() | 
					
						
							| 
									
										
										
										
											2018-12-13 23:52:09 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     bool dataOk; | 
					
						
							|  |  |  |     int reverseAPIPort = ui->reverseAPIPort->text().toInt(&dataOk); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if((!dataOk) || (reverseAPIPort < 1024) || (reverseAPIPort > 65535)) { | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         m_reverseAPIPort = reverseAPIPort; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-27 09:31:55 +01:00
										 |  |  | void BasicChannelSettingsDialog::on_reverseAPIDeviceIndex_editingFinished() | 
					
						
							| 
									
										
										
										
											2018-12-17 01:25:54 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     bool dataOk; | 
					
						
							|  |  |  |     int reverseAPIDeviceIndex = ui->reverseAPIDeviceIndex->text().toInt(&dataOk); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((!dataOk) || (reverseAPIDeviceIndex < 0)) { | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         m_reverseAPIDeviceIndex = reverseAPIDeviceIndex; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-27 09:31:55 +01:00
										 |  |  | void BasicChannelSettingsDialog::on_reverseAPIChannelIndex_editingFinished() | 
					
						
							| 
									
										
										
										
											2018-12-17 01:25:54 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     bool dataOk; | 
					
						
							|  |  |  |     int reverseAPIChannelIndex = ui->reverseAPIChannelIndex->text().toInt(&dataOk); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((!dataOk) || (reverseAPIChannelIndex < 0)) { | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         m_reverseAPIChannelIndex = reverseAPIChannelIndex; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-18 01:42:03 +02:00
										 |  |  | void BasicChannelSettingsDialog::on_streamIndex_valueChanged(int value) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_streamIndex = value; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void BasicChannelSettingsDialog::on_titleReset_clicked() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     ui->title->setText(m_defaultTitle); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-24 15:51:50 +01:00
										 |  |  | void BasicChannelSettingsDialog::on_presets_clicked() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     ChannelGUI *channelGUI = qobject_cast<ChannelGUI *>(parent()); | 
					
						
							|  |  |  |     if (!channelGUI) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         qDebug() << "BasicChannelSettingsDialog::on_presets_clicked: parent not a ChannelGUI"; | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     ChannelAPI *channel = MainCore::instance()->getChannel(channelGUI->getDeviceSetIndex(), channelGUI->getIndex()); | 
					
						
							|  |  |  |     const QString& id = channel->getURI(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     PluginPresetsDialog dialog(id); | 
					
						
							|  |  |  |     dialog.setPresets(MainCore::instance()->getMutableSettings().getPluginPresets()); | 
					
						
							|  |  |  |     dialog.setSerializableInterface(channelGUI); | 
					
						
							|  |  |  |     dialog.populateTree(); | 
					
						
							|  |  |  |     new DialogPositioner(&dialog, true); | 
					
						
							|  |  |  |     dialog.exec(); | 
					
						
							|  |  |  |     if (dialog.wasPresetLoaded()) { | 
					
						
							|  |  |  |         QDialog::reject(); // Settings may have changed, so GUI will be inconsistent. Just close it
 | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-24 02:05:48 +02:00
										 |  |  | void BasicChannelSettingsDialog::accept() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2017-11-14 00:06:42 +01:00
										 |  |  |     m_channelMarker->blockSignals(true); | 
					
						
							| 
									
										
										
										
											2017-08-24 02:05:48 +02:00
										 |  |  |     m_channelMarker->setTitle(ui->title->text()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if(m_color.isValid()) { | 
					
						
							|  |  |  |         m_channelMarker->setColor(m_color); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-26 06:38:28 +02:00
										 |  |  |     m_channelMarker->setFrequencyScaleDisplayType((ChannelMarker::frequencyScaleDisplay_t) ui->fScaleDisplayType->currentIndex()); | 
					
						
							| 
									
										
										
										
											2017-11-14 00:06:42 +01:00
										 |  |  |     m_channelMarker->blockSignals(false); | 
					
						
							| 
									
										
										
										
											2017-08-26 06:38:28 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 10:34:00 +02:00
										 |  |  |     m_hasChanged = true; | 
					
						
							| 
									
										
										
										
											2017-08-24 02:05:48 +02:00
										 |  |  |     QDialog::accept(); | 
					
						
							|  |  |  | } |