mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-10-31 04:50:29 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			92 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			92 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef INCLUDE_NFMDEMODGUI_H
 | |
| #define INCLUDE_NFMDEMODGUI_H
 | |
| 
 | |
| #include "channel/channelgui.h"
 | |
| #include "dsp/dsptypes.h"
 | |
| #include "dsp/channelmarker.h"
 | |
| #include "dsp/movingaverage.h"
 | |
| #include "util/messagequeue.h"
 | |
| 
 | |
| #include "nfmdemodsettings.h"
 | |
| 
 | |
| class PluginAPI;
 | |
| class DeviceUISet;
 | |
| class BasebandSampleSink;
 | |
| class NFMDemod;
 | |
| 
 | |
| namespace Ui {
 | |
| 	class NFMDemodGUI;
 | |
| }
 | |
| 
 | |
| class NFMDemodGUI : public ChannelGUI {
 | |
| 	Q_OBJECT
 | |
| 
 | |
| public:
 | |
| 	static NFMDemodGUI* create(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel);
 | |
| 	virtual void destroy();
 | |
| 
 | |
| 	void resetToDefaults();
 | |
| 	QByteArray serialize() const;
 | |
| 	bool deserialize(const QByteArray& data);
 | |
| 	virtual MessageQueue *getInputMessageQueue() { return &m_inputMessageQueue; }
 | |
| 
 | |
| public slots:
 | |
| 	void channelMarkerChangedByCursor();
 | |
|     void channelMarkerHighlightedByCursor();
 | |
| 
 | |
| private:
 | |
| 	Ui::NFMDemodGUI* ui;
 | |
| 	PluginAPI* m_pluginAPI;
 | |
| 	DeviceUISet* m_deviceUISet;
 | |
| 	ChannelMarker m_channelMarker;
 | |
| 	NFMDemodSettings m_settings;
 | |
| 	bool m_basicSettingsShown;
 | |
| 	bool m_doApplySettings;
 | |
| 
 | |
| 	NFMDemod* m_nfmDemod;
 | |
| 	bool m_squelchOpen;
 | |
|     int m_audioSampleRate;
 | |
| 	bool m_reportedDcsCode;
 | |
| 	bool m_dcsShowPositive;
 | |
| 	uint32_t m_tickCount;
 | |
| 	MessageQueue m_inputMessageQueue;
 | |
| 
 | |
| 	explicit NFMDemodGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel, QWidget* parent = 0);
 | |
| 	virtual ~NFMDemodGUI();
 | |
| 
 | |
| 	void blockApplySettings(bool block);
 | |
| 	void applySettings(bool force = false);
 | |
| 	void displaySettings();
 | |
|     void displayStreamIndex();
 | |
| 	void setCtcssFreq(Real ctcssFreq);
 | |
| 	void setDcsCode(unsigned int dcsCode);
 | |
| 	bool handleMessage(const Message& message);
 | |
| 
 | |
| 	void leaveEvent(QEvent*);
 | |
| 	void enterEvent(QEvent*);
 | |
| 
 | |
| private slots:
 | |
| 	void on_deltaFrequency_changed(qint64 value);
 | |
| 	void on_channelSpacingApply_clicked();
 | |
| 	void on_rfBW_valueChanged(int value);
 | |
| 	void on_afBW_valueChanged(int value);
 | |
| 	void on_fmDev_valueChanged(int value);
 | |
| 	void on_volume_valueChanged(int value);
 | |
| 	void on_squelchGate_valueChanged(int value);
 | |
| 	void on_deltaSquelch_toggled(bool checked);
 | |
| 	void on_squelch_valueChanged(int value);
 | |
| 	void on_ctcss_currentIndexChanged(int index);
 | |
| 	void on_ctcssOn_toggled(bool checked);
 | |
| 	void on_dcsOn_toggled(bool checked);
 | |
| 	void on_dcsCode_currentIndexChanged(int index);
 | |
|     void on_highPassFilter_toggled(bool checked);
 | |
| 	void on_audioMute_toggled(bool checked);
 | |
| 	void onWidgetRolled(QWidget* widget, bool rollDown);
 | |
| 	void onMenuDialogCalled(const QPoint& p);
 | |
|     void handleInputMessages();
 | |
|     void audioSelect();
 | |
| 	void tick();
 | |
| };
 | |
| 
 | |
| #endif // INCLUDE_NFMDEMODGUI_H
 |