| 
									
										
										
										
											2016-12-17 07:58:40 +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                  //
 | 
					
						
							| 
									
										
										
										
											2019-04-11 06:39:30 +02:00
										 |  |  | // (at your option) any later version.                                           //
 | 
					
						
							| 
									
										
										
										
											2016-12-17 07:58:40 +01: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/>.          //
 | 
					
						
							|  |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef PLUGINS_CHANNELTX_MODWFM_WFMMODGUI_H_
 | 
					
						
							|  |  |  | #define PLUGINS_CHANNELTX_MODWFM_WFMMODGUI_H_
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-04 06:16:15 +02:00
										 |  |  | #include "channel/channelgui.h"
 | 
					
						
							| 
									
										
										
										
											2016-12-17 07:58:40 +01:00
										 |  |  | #include "dsp/channelmarker.h"
 | 
					
						
							| 
									
										
										
										
											2018-02-03 10:33:02 +01:00
										 |  |  | #include "util/movingaverage.h"
 | 
					
						
							| 
									
										
										
										
											2017-09-16 22:23:31 +02:00
										 |  |  | #include "util/messagequeue.h"
 | 
					
						
							| 
									
										
										
										
											2016-12-17 07:58:40 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "wfmmod.h"
 | 
					
						
							| 
									
										
										
										
											2017-10-13 08:24:39 +02:00
										 |  |  | #include "wfmmodsettings.h"
 | 
					
						
							| 
									
										
										
										
											2016-12-17 07:58:40 +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-17 07:58:40 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | namespace Ui { | 
					
						
							|  |  |  |     class WFMModGUI; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-04 06:16:15 +02:00
										 |  |  | class WFMModGUI : public ChannelGUI { | 
					
						
							| 
									
										
										
										
											2016-12-17 07:58:40 +01:00
										 |  |  |     Q_OBJECT | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2017-11-08 22:54:58 +01:00
										 |  |  |     static WFMModGUI* create(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSampleSource *channelTx); | 
					
						
							| 
									
										
										
										
											2017-09-16 10:45:08 +02:00
										 |  |  |     virtual void destroy(); | 
					
						
							| 
									
										
										
										
											2016-12-17 07:58:40 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     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-17 07:58:40 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-14 21:39:49 +01:00
										 |  |  | public slots: | 
					
						
							|  |  |  |     void channelMarkerChangedByCursor(); | 
					
						
							| 
									
										
										
										
											2016-12-17 07:58:40 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  |     Ui::WFMModGUI* ui; | 
					
						
							|  |  |  |     PluginAPI* m_pluginAPI; | 
					
						
							| 
									
										
										
										
											2017-11-01 00:00:03 +01:00
										 |  |  |     DeviceUISet* m_deviceUISet; | 
					
						
							| 
									
										
										
										
											2016-12-17 07:58:40 +01:00
										 |  |  |     ChannelMarker m_channelMarker; | 
					
						
							| 
									
										
										
										
											2017-10-13 08:24:39 +02:00
										 |  |  |     WFMModSettings m_settings; | 
					
						
							| 
									
										
										
										
											2016-12-17 07:58:40 +01:00
										 |  |  |     bool m_doApplySettings; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     WFMMod* m_wfmMod; | 
					
						
							| 
									
										
										
										
											2018-02-03 10:33:02 +01:00
										 |  |  |     MovingAverageUtil<double, double, 20> m_channelPowerDbAvg; | 
					
						
							| 
									
										
										
										
											2016-12-17 07:58:40 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     QString m_fileName; | 
					
						
							|  |  |  |     quint32 m_recordLength; | 
					
						
							|  |  |  |     int m_recordSampleRate; | 
					
						
							|  |  |  |     int m_samplesCount; | 
					
						
							| 
									
										
										
										
											2020-08-02 10:11:41 +02:00
										 |  |  |     int m_audioSampleRate; | 
					
						
							|  |  |  |     int m_feedbackAudioSampleRate; | 
					
						
							| 
									
										
										
										
											2016-12-17 07:58:40 +01:00
										 |  |  |     std::size_t m_tickCount; | 
					
						
							|  |  |  |     bool m_enableNavTime; | 
					
						
							| 
									
										
										
										
											2017-09-16 22:23:31 +02:00
										 |  |  |     MessageQueue m_inputMessageQueue; | 
					
						
							| 
									
										
										
										
											2016-12-17 07:58:40 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-08 22:54:58 +01:00
										 |  |  |     explicit WFMModGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSampleSource *channelTx, QWidget* parent = 0); | 
					
						
							| 
									
										
										
										
											2016-12-17 07:58:40 +01:00
										 |  |  |     virtual ~WFMModGUI(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     void blockApplySettings(bool block); | 
					
						
							| 
									
										
										
										
											2017-10-13 08:40:10 +02:00
										 |  |  |     void applySettings(bool force = false); | 
					
						
							| 
									
										
										
										
											2017-10-13 08:34:38 +02:00
										 |  |  |     void displaySettings(); | 
					
						
							| 
									
										
										
										
											2019-11-17 11:09:07 +01:00
										 |  |  |     void displayStreamIndex(); | 
					
						
							| 
									
										
										
										
											2016-12-17 07:58:40 +01:00
										 |  |  |     void updateWithStreamData(); | 
					
						
							|  |  |  |     void updateWithStreamTime(); | 
					
						
							| 
									
										
										
										
											2020-10-03 19:51:14 +02:00
										 |  |  |     bool handleMessage(const Message& message); | 
					
						
							| 
									
										
										
										
											2016-12-17 07:58:40 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     void leaveEvent(QEvent*); | 
					
						
							|  |  |  |     void enterEvent(QEvent*); | 
					
						
							| 
									
										
										
										
											2017-01-08 19:54:51 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     static int requiredBW(int rfBW) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if (rfBW <= 96000) { | 
					
						
							|  |  |  |             return 96000; | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             return (3*rfBW)/2; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-11-14 21:39:49 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | private slots: | 
					
						
							|  |  |  |     void handleSourceMessages(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     void on_deltaFrequency_changed(qint64 value); | 
					
						
							|  |  |  |     void on_rfBW_currentIndexChanged(int index); | 
					
						
							|  |  |  |     void on_afBW_valueChanged(int value); | 
					
						
							|  |  |  |     void on_fmDev_valueChanged(int value); | 
					
						
							|  |  |  |     void on_toneFrequency_valueChanged(int value); | 
					
						
							|  |  |  |     void on_volume_valueChanged(int value); | 
					
						
							|  |  |  |     void on_channelMute_toggled(bool checked); | 
					
						
							|  |  |  |     void on_tone_toggled(bool checked); | 
					
						
							|  |  |  |     void on_morseKeyer_toggled(bool checked); | 
					
						
							|  |  |  |     void on_mic_toggled(bool checked); | 
					
						
							|  |  |  |     void on_play_toggled(bool checked); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     void on_playLoop_toggled(bool checked); | 
					
						
							|  |  |  |     void on_navTimeSlider_valueChanged(int value); | 
					
						
							|  |  |  |     void on_showFileDialog_clicked(bool checked); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-02 10:11:41 +02:00
										 |  |  |     void on_feedbackEnable_toggled(bool checked); | 
					
						
							|  |  |  |     void on_feedbackVolume_valueChanged(int value); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-14 21:39:49 +01:00
										 |  |  |     void onWidgetRolled(QWidget* widget, bool rollDown); | 
					
						
							| 
									
										
										
										
											2018-04-15 10:59:01 +02:00
										 |  |  |     void onMenuDialogCalled(const QPoint& p); | 
					
						
							| 
									
										
										
										
											2017-11-14 21:39:49 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     void configureFileName(); | 
					
						
							| 
									
										
										
										
											2018-03-29 17:27:03 +02:00
										 |  |  |     void audioSelect(); | 
					
						
							| 
									
										
										
										
											2020-08-02 10:11:41 +02:00
										 |  |  |     void audioFeedbackSelect(); | 
					
						
							| 
									
										
										
										
											2017-11-14 21:39:49 +01:00
										 |  |  |     void tick(); | 
					
						
							| 
									
										
										
										
											2016-12-17 07:58:40 +01:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* PLUGINS_CHANNELTX_MODWFM_WFMMODGUI_H_ */
 |