mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-10-31 13:00:26 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			92 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			92 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef INCLUDE_SSBDEMODGUI_H
 | |
| #define INCLUDE_SSBDEMODGUI_H
 | |
| 
 | |
| #include "gui/rollupwidget.h"
 | |
| #include "plugin/plugingui.h"
 | |
| #include "dsp/channelmarker.h"
 | |
| #include "dsp/movingaverage.h"
 | |
| 
 | |
| class PluginAPI;
 | |
| class DeviceAPI;
 | |
| 
 | |
| class AudioFifo;
 | |
| class ThreadedBasebandSampleSink;
 | |
| class DownChannelizer;
 | |
| class SSBDemod;
 | |
| class SpectrumVis;
 | |
| 
 | |
| namespace Ui {
 | |
| 	class SSBDemodGUI;
 | |
| }
 | |
| 
 | |
| class SSBDemodGUI : public RollupWidget, public PluginGUI {
 | |
| 	Q_OBJECT
 | |
| 
 | |
| public:
 | |
| 	static SSBDemodGUI* create(PluginAPI* pluginAPI, DeviceAPI *deviceAPI);
 | |
| 	void destroy();
 | |
| 
 | |
| 	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);
 | |
| 
 | |
| 	virtual bool handleMessage(const Message& message);
 | |
| 
 | |
| 	static const QString m_channelID;
 | |
| 
 | |
| private slots:
 | |
| 	void viewChanged();
 | |
| 	void on_deltaFrequency_changed(quint64 value);
 | |
| 	void on_deltaMinus_toggled(bool minus);
 | |
| 	void on_audioBinaural_toggled(bool binaural);
 | |
| 	void on_audioFlipChannels_toggled(bool flip);
 | |
| 	void on_dsb_toggled(bool dsb);
 | |
| 	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_spanLog2_valueChanged(int value);
 | |
| 	void onWidgetRolled(QWidget* widget, bool rollDown);
 | |
| 	void onMenuDoubleClicked();
 | |
| 	void tick();
 | |
| 
 | |
| private:
 | |
| 	Ui::SSBDemodGUI* ui;
 | |
| 	PluginAPI* m_pluginAPI;
 | |
| 	DeviceAPI* m_deviceAPI;
 | |
| 	ChannelMarker m_channelMarker;
 | |
| 	bool m_basicSettingsShown;
 | |
| 	bool m_doApplySettings;
 | |
| 	int m_rate;
 | |
| 	int m_spanLog2;
 | |
| 	bool m_audioBinaural;
 | |
| 	bool m_audioFlipChannels;
 | |
| 	bool m_dsb;
 | |
| 	bool m_audioMute;
 | |
| 	MovingAverage<Real> m_channelPowerDbAvg;
 | |
| 
 | |
| 	ThreadedBasebandSampleSink* m_threadedChannelizer;
 | |
| 	DownChannelizer* m_channelizer;
 | |
| 	SSBDemod* m_ssbDemod;
 | |
| 	SpectrumVis* m_spectrumVis;
 | |
| 
 | |
| 	explicit SSBDemodGUI(PluginAPI* pluginAPI, DeviceAPI* deviceAPI, QWidget* parent = NULL);
 | |
| 	virtual ~SSBDemodGUI();
 | |
| 
 | |
| 	int  getEffectiveLowCutoff(int lowCutoff);
 | |
| 	bool setNewRate(int spanLog2);
 | |
| 
 | |
|     void blockApplySettings(bool block);
 | |
| 	void applySettings();
 | |
| 
 | |
| 	void leaveEvent(QEvent*);
 | |
| 	void enterEvent(QEvent*);
 | |
| };
 | |
| 
 | |
| #endif // INCLUDE_SSBDEMODGUI_H
 |