| 
									
										
										
										
											2016-12-12 00:48:27 +01: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                  //
 | 
					
						
							|  |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // 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/>.          //
 | 
					
						
							|  |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef PLUGINS_CHANNELTX_MODSSB_SSBMODGUI_H_
 | 
					
						
							|  |  |  | #define PLUGINS_CHANNELTX_MODSSB_SSBMODGUI_H_
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-21 01:09:47 +01:00
										 |  |  | #include <QIcon>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-26 00:22:08 +02:00
										 |  |  | #include <plugin/plugininstancegui.h>
 | 
					
						
							| 
									
										
										
										
											2016-12-12 00:48:27 +01:00
										 |  |  | #include "gui/rollupwidget.h"
 | 
					
						
							|  |  |  | #include "dsp/channelmarker.h"
 | 
					
						
							|  |  |  | #include "dsp/movingaverage.h"
 | 
					
						
							| 
									
										
										
										
											2017-09-16 22:23:31 +02:00
										 |  |  | #include "util/messagequeue.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-12 00:48:27 +01:00
										 |  |  | #include "ssbmod.h"
 | 
					
						
							| 
									
										
										
										
											2017-10-19 00:26:03 +02:00
										 |  |  | #include "ssbmodsettings.h"
 | 
					
						
							| 
									
										
										
										
											2016-12-12 00:48:27 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | class PluginAPI; | 
					
						
							| 
									
										
										
										
											2017-11-01 00:00:03 +01:00
										 |  |  | class DeviceUISet; | 
					
						
							| 
									
										
										
										
											2017-11-08 22:54:58 +01:00
										 |  |  | class BasebandSampleSource; | 
					
						
							| 
									
										
										
										
											2016-12-14 00:14:52 +01:00
										 |  |  | class SpectrumVis; | 
					
						
							| 
									
										
										
										
											2016-12-12 00:48:27 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | namespace Ui { | 
					
						
							|  |  |  |     class SSBModGUI; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-26 00:22:08 +02:00
										 |  |  | class SSBModGUI : public RollupWidget, public PluginInstanceGUI { | 
					
						
							| 
									
										
										
										
											2016-12-12 00:48:27 +01:00
										 |  |  |     Q_OBJECT | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2017-11-08 22:54:58 +01:00
										 |  |  |     static SSBModGUI* create(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSampleSource *channelTx); | 
					
						
							| 
									
										
										
										
											2017-09-16 10:45:08 +02:00
										 |  |  |     virtual void destroy(); | 
					
						
							| 
									
										
										
										
											2016-12-12 00:48:27 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     void setName(const QString& name); | 
					
						
							|  |  |  |     QString getName() const; | 
					
						
							|  |  |  |     virtual qint64 getCenterFrequency() const; | 
					
						
							|  |  |  |     virtual void setCenterFrequency(qint64 centerFrequency); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     void resetToDefaults(); | 
					
						
							|  |  |  |     QByteArray serialize() const; | 
					
						
							|  |  |  |     bool deserialize(const QByteArray& data); | 
					
						
							| 
									
										
										
										
											2017-09-16 22:23:31 +02:00
										 |  |  |     virtual MessageQueue *getInputMessageQueue() { return &m_inputMessageQueue; } | 
					
						
							| 
									
										
										
										
											2016-12-12 00:48:27 +01:00
										 |  |  |     virtual bool handleMessage(const Message& message); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-14 21:24:16 +01:00
										 |  |  | public slots: | 
					
						
							|  |  |  |     void channelMarkerChangedByCursor(); | 
					
						
							| 
									
										
										
										
											2016-12-12 00:48:27 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  |     Ui::SSBModGUI* ui; | 
					
						
							|  |  |  |     PluginAPI* m_pluginAPI; | 
					
						
							| 
									
										
										
										
											2017-11-01 00:00:03 +01:00
										 |  |  |     DeviceUISet* m_deviceUISet; | 
					
						
							| 
									
										
										
										
											2016-12-12 00:48:27 +01:00
										 |  |  |     ChannelMarker m_channelMarker; | 
					
						
							| 
									
										
										
										
											2017-10-19 00:26:03 +02:00
										 |  |  |     SSBModSettings m_settings; | 
					
						
							| 
									
										
										
										
											2016-12-12 00:48:27 +01:00
										 |  |  |     bool m_doApplySettings; | 
					
						
							| 
									
										
										
										
											2017-11-03 19:29:48 +01:00
										 |  |  | 	int m_spectrumRate; | 
					
						
							| 
									
										
										
										
											2016-12-12 00:48:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-14 00:14:52 +01:00
										 |  |  |     SpectrumVis* m_spectrumVis; | 
					
						
							| 
									
										
										
										
											2016-12-12 00:48:27 +01:00
										 |  |  |     SSBMod* m_ssbMod; | 
					
						
							| 
									
										
										
										
											2017-05-12 00:03:56 +02:00
										 |  |  |     MovingAverage<double> m_channelPowerDbAvg; | 
					
						
							| 
									
										
										
										
											2016-12-12 00:48:27 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     QString m_fileName; | 
					
						
							|  |  |  |     quint32 m_recordLength; | 
					
						
							|  |  |  |     int m_recordSampleRate; | 
					
						
							|  |  |  |     int m_samplesCount; | 
					
						
							|  |  |  |     std::size_t m_tickCount; | 
					
						
							|  |  |  |     bool m_enableNavTime; | 
					
						
							|  |  |  |     SSBMod::SSBModInputAF m_modAFInput; | 
					
						
							| 
									
										
										
										
											2017-09-16 22:23:31 +02:00
										 |  |  |     MessageQueue m_inputMessageQueue; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-21 01:09:47 +01:00
										 |  |  |     QIcon m_iconDSBUSB; | 
					
						
							|  |  |  |     QIcon m_iconDSBLSB; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-08 22:54:58 +01:00
										 |  |  |     explicit SSBModGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSampleSource *channelTx, QWidget* parent = 0); | 
					
						
							| 
									
										
										
										
											2016-12-12 00:48:27 +01:00
										 |  |  |     virtual ~SSBModGUI(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-03 19:29:48 +01:00
										 |  |  |     bool blockApplySettings(bool block); | 
					
						
							| 
									
										
										
										
											2017-10-21 12:17:11 +02:00
										 |  |  |     void applySettings(bool force = false); | 
					
						
							| 
									
										
										
										
											2017-11-03 02:55:12 +01:00
										 |  |  |     void applyBandwidths(bool force = false); | 
					
						
							| 
									
										
										
										
											2017-08-05 19:08:33 +02:00
										 |  |  |     void displaySettings(); | 
					
						
							| 
									
										
										
										
											2017-10-21 03:42:28 +02:00
										 |  |  |     void displayAGCPowerThreshold(); | 
					
						
							| 
									
										
										
										
											2016-12-12 00:48:27 +01:00
										 |  |  |     void updateWithStreamData(); | 
					
						
							|  |  |  |     void updateWithStreamTime(); | 
					
						
							| 
									
										
										
										
											2017-10-20 21:19:42 +02:00
										 |  |  |     void channelMarkerUpdate(); | 
					
						
							| 
									
										
										
										
											2016-12-12 00:48:27 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     void leaveEvent(QEvent*); | 
					
						
							|  |  |  |     void enterEvent(QEvent*); | 
					
						
							| 
									
										
										
										
											2017-11-14 21:24:16 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | private slots: | 
					
						
							|  |  |  |     void handleSourceMessages(); | 
					
						
							|  |  |  |     void on_deltaFrequency_changed(qint64 value); | 
					
						
							| 
									
										
										
										
											2017-11-21 01:09:47 +01:00
										 |  |  |     void on_flipSidebands_clicked(bool checked); | 
					
						
							| 
									
										
										
										
											2017-11-14 21:24:16 +01:00
										 |  |  |     void on_dsb_toggled(bool checked); | 
					
						
							|  |  |  |     void on_audioBinaural_toggled(bool checked); | 
					
						
							|  |  |  |     void on_audioFlipChannels_toggled(bool checked); | 
					
						
							|  |  |  |     void on_spanLog2_valueChanged(int value); | 
					
						
							|  |  |  |     void on_BW_valueChanged(int value); | 
					
						
							|  |  |  |     void on_lowCut_valueChanged(int value); | 
					
						
							|  |  |  |     void on_volume_valueChanged(int value); | 
					
						
							|  |  |  |     void on_audioMute_toggled(bool checked); | 
					
						
							|  |  |  |     void on_tone_toggled(bool checked); | 
					
						
							|  |  |  |     void on_toneFrequency_valueChanged(int value); | 
					
						
							|  |  |  |     void on_mic_toggled(bool checked); | 
					
						
							|  |  |  |     void on_agc_toggled(bool checked); | 
					
						
							|  |  |  |     void on_agcOrder_valueChanged(int value); | 
					
						
							|  |  |  |     void on_agcTime_valueChanged(int value); | 
					
						
							|  |  |  |     void on_agcThreshold_valueChanged(int value); | 
					
						
							|  |  |  |     void on_agcThresholdGate_valueChanged(int value); | 
					
						
							|  |  |  |     void on_agcThresholdDelay_valueChanged(int value); | 
					
						
							|  |  |  |     void on_play_toggled(bool checked); | 
					
						
							|  |  |  |     void on_playLoop_toggled(bool checked); | 
					
						
							|  |  |  |     void on_morseKeyer_toggled(bool checked); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     void on_navTimeSlider_valueChanged(int value); | 
					
						
							|  |  |  |     void on_showFileDialog_clicked(bool checked); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     void onWidgetRolled(QWidget* widget, bool rollDown); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     void configureFileName(); | 
					
						
							|  |  |  |     void tick(); | 
					
						
							| 
									
										
										
										
											2016-12-12 00:48:27 +01:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* PLUGINS_CHANNELTX_MODSSB_SSBMODGUI_H_ */
 |