sdrangel/plugins/channelrx/demodssb/ssbdemodgui.h

95 lines
2.4 KiB
C
Raw Normal View History

2014-05-21 13:31:14 -04:00
#ifndef INCLUDE_SSBDEMODGUI_H
#define INCLUDE_SSBDEMODGUI_H
#include "gui/rollupwidget.h"
#include "plugin/plugingui.h"
#include "dsp/channelmarker.h"
#include "dsp/movingaverage.h"
2014-05-21 13:31:14 -04:00
class PluginAPI;
class DeviceSourceAPI;
2014-05-21 13:31:14 -04:00
class AudioFifo;
class ThreadedBasebandSampleSink;
class DownChannelizer;
2014-05-21 13:31:14 -04:00
class SSBDemod;
class SpectrumVis;
namespace Ui {
class SSBDemodGUI;
}
class SSBDemodGUI : public RollupWidget, public PluginGUI {
Q_OBJECT
public:
static SSBDemodGUI* create(PluginAPI* pluginAPI, DeviceSourceAPI *deviceAPI);
2014-05-21 13:31:14 -04:00
void destroy();
void setName(const QString& name);
QString getName() const;
virtual qint64 getCenterFrequency() const;
virtual void setCenterFrequency(qint64 centerFrequency);
2014-05-21 13:31:14 -04:00
void resetToDefaults();
QByteArray serialize() const;
bool deserialize(const QByteArray& data);
2015-08-17 02:29:34 -04:00
virtual bool handleMessage(const Message& message);
2014-05-21 13:31:14 -04:00
static const QString m_channelID;
2014-05-21 13:31:14 -04:00
private slots:
void viewChanged();
void on_deltaFrequency_changed(qint64 value);
2015-12-05 12:48:15 -05:00
void on_audioBinaural_toggled(bool binaural);
void on_audioFlipChannels_toggled(bool flip);
2015-12-05 18:43:40 -05:00
void on_dsb_toggled(bool dsb);
2014-05-21 13:31:14 -04:00
void on_BW_valueChanged(int value);
void on_lowCut_valueChanged(int value);
2014-05-21 13:31:14 -04:00
void on_volume_valueChanged(int value);
2017-07-25 02:40:15 -04:00
void on_agc_stateChanged(int state);
void on_agcTimeLog2_valueChanged(int value);
void on_agcPowerThreshold_valueChanged(int value);
void on_agcThresholdGate_valueChanged(int value);
void on_audioMute_toggled(bool checked);
2015-06-10 23:47:59 -04:00
void on_spanLog2_valueChanged(int value);
2014-05-21 13:31:14 -04:00
void onWidgetRolled(QWidget* widget, bool rollDown);
void onMenuDoubleClicked();
void tick();
2014-05-21 13:31:14 -04:00
private:
Ui::SSBDemodGUI* ui;
PluginAPI* m_pluginAPI;
DeviceSourceAPI* m_deviceAPI;
ChannelMarker m_channelMarker;
2014-05-21 13:31:14 -04:00
bool m_basicSettingsShown;
bool m_doApplySettings;
2015-06-10 23:47:59 -04:00
int m_rate;
int m_spanLog2;
2015-12-05 12:48:15 -05:00
bool m_audioBinaural;
bool m_audioFlipChannels;
2015-12-05 18:43:40 -05:00
bool m_dsb;
bool m_audioMute;
MovingAverage<double> m_channelPowerDbAvg;
2014-05-21 13:31:14 -04:00
ThreadedBasebandSampleSink* m_threadedChannelizer;
DownChannelizer* m_channelizer;
2014-05-21 13:31:14 -04:00
SSBDemod* m_ssbDemod;
SpectrumVis* m_spectrumVis;
explicit SSBDemodGUI(PluginAPI* pluginAPI, DeviceSourceAPI* deviceAPI, QWidget* parent = NULL);
virtual ~SSBDemodGUI();
2014-05-21 13:31:14 -04:00
int getEffectiveLowCutoff(int lowCutoff);
2015-06-10 23:47:59 -04:00
bool setNewRate(int spanLog2);
void blockApplySettings(bool block);
2014-05-21 13:31:14 -04:00
void applySettings();
void leaveEvent(QEvent*);
void enterEvent(QEvent*);
2014-05-21 13:31:14 -04:00
};
#endif // INCLUDE_SSBDEMODGUI_H