2014-05-21 13:31:14 -04:00
|
|
|
#ifndef INCLUDE_SSBDEMODGUI_H
|
|
|
|
#define INCLUDE_SSBDEMODGUI_H
|
|
|
|
|
2017-11-20 19:09:47 -05:00
|
|
|
#include <QIcon>
|
|
|
|
|
2020-10-04 00:16:15 -04:00
|
|
|
#include "channel/channelgui.h"
|
2015-08-24 18:48:56 -04:00
|
|
|
#include "dsp/channelmarker.h"
|
2015-10-04 04:50:26 -04:00
|
|
|
#include "dsp/movingaverage.h"
|
2017-09-16 16:23:31 -04:00
|
|
|
#include "util/messagequeue.h"
|
2022-01-08 23:27:12 -05:00
|
|
|
#include "settings/rollupstate.h"
|
2017-10-01 19:45:19 -04:00
|
|
|
#include "ssbdemodsettings.h"
|
2014-05-21 13:31:14 -04:00
|
|
|
|
|
|
|
class PluginAPI;
|
2017-10-31 03:24:05 -04:00
|
|
|
class DeviceUISet;
|
2014-05-21 13:31:14 -04:00
|
|
|
|
|
|
|
class AudioFifo;
|
|
|
|
class SSBDemod;
|
|
|
|
class SpectrumVis;
|
2017-11-08 19:03:05 -05:00
|
|
|
class BasebandSampleSink;
|
2014-05-21 13:31:14 -04:00
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class SSBDemodGUI;
|
|
|
|
}
|
|
|
|
|
2020-10-04 00:16:15 -04:00
|
|
|
class SSBDemodGUI : public ChannelGUI {
|
2014-05-21 13:31:14 -04:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2017-11-08 19:03:05 -05:00
|
|
|
static SSBDemodGUI* create(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel);
|
2017-09-16 04:45:08 -04:00
|
|
|
virtual void destroy();
|
2014-05-21 13:31:14 -04:00
|
|
|
|
|
|
|
void resetToDefaults();
|
|
|
|
QByteArray serialize() const;
|
|
|
|
bool deserialize(const QByteArray& data);
|
2017-09-16 16:23:31 -04:00
|
|
|
virtual MessageQueue *getInputMessageQueue() { return &m_inputMessageQueue; }
|
2022-04-12 10:20:45 -04:00
|
|
|
virtual void setWorkspaceIndex(int index) { m_settings.m_workspaceIndex = index; };
|
|
|
|
virtual int getWorkspaceIndex() const { return m_settings.m_workspaceIndex; };
|
|
|
|
virtual void setGeometryBytes(const QByteArray& blob) { m_settings.m_geometryBytes = blob; };
|
|
|
|
virtual QByteArray getGeometryBytes() const { return m_settings.m_geometryBytes; };
|
|
|
|
virtual QString getTitle() const { return m_settings.m_title; };
|
|
|
|
virtual QColor getTitleColor() const { return m_settings.m_rgbColor; };
|
2022-04-12 12:27:27 -04:00
|
|
|
virtual void zetHidden(bool hidden) { m_settings.m_hidden = hidden; }
|
|
|
|
virtual bool getHidden() const { return m_settings.m_hidden; }
|
2022-04-16 10:45:53 -04:00
|
|
|
virtual ChannelMarker& getChannelMarker() { return m_channelMarker; }
|
2022-04-17 19:42:03 -04:00
|
|
|
virtual int getStreamIndex() const { return m_settings.m_streamIndex; }
|
|
|
|
virtual void setStreamIndex(int streamIndex) { m_settings.m_streamIndex = streamIndex; }
|
2014-05-21 13:31:14 -04:00
|
|
|
|
2017-11-13 20:01:44 -05:00
|
|
|
public slots:
|
|
|
|
void channelMarkerChangedByCursor();
|
2017-11-14 16:58:35 -05:00
|
|
|
void channelMarkerHighlightedByCursor();
|
2014-05-21 13:31:14 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::SSBDemodGUI* ui;
|
|
|
|
PluginAPI* m_pluginAPI;
|
2017-10-31 03:24:05 -04:00
|
|
|
DeviceUISet* m_deviceUISet;
|
2015-08-24 18:48:56 -04:00
|
|
|
ChannelMarker m_channelMarker;
|
2022-01-08 23:27:12 -05:00
|
|
|
RollupState m_rollupState;
|
2017-10-01 19:45:19 -04:00
|
|
|
SSBDemodSettings m_settings;
|
2022-04-13 05:08:21 -04:00
|
|
|
qint64 m_deviceCenterFrequency;
|
|
|
|
int m_basebandSampleRate;
|
2015-08-18 19:02:52 -04:00
|
|
|
bool m_doApplySettings;
|
2017-11-03 14:29:48 -04:00
|
|
|
int m_spectrumRate;
|
2015-12-05 12:48:15 -05:00
|
|
|
bool m_audioBinaural;
|
2015-12-05 13:57:48 -05:00
|
|
|
bool m_audioFlipChannels;
|
2016-04-05 03:20:02 -04:00
|
|
|
bool m_audioMute;
|
2017-07-25 19:44:57 -04:00
|
|
|
bool m_squelchOpen;
|
2020-08-02 04:10:26 -04:00
|
|
|
int m_audioSampleRate;
|
2017-08-17 11:43:27 -04:00
|
|
|
uint32_t m_tickCount;
|
2014-05-21 13:31:14 -04:00
|
|
|
|
|
|
|
SSBDemod* m_ssbDemod;
|
|
|
|
SpectrumVis* m_spectrumVis;
|
2017-09-16 16:23:31 -04:00
|
|
|
MessageQueue m_inputMessageQueue;
|
2014-05-21 13:31:14 -04:00
|
|
|
|
2017-11-20 19:09:47 -05:00
|
|
|
QIcon m_iconDSBUSB;
|
|
|
|
QIcon m_iconDSBLSB;
|
|
|
|
|
2017-11-08 19:03:05 -05:00
|
|
|
explicit SSBDemodGUI(PluginAPI* pluginAPI, DeviceUISet* deviceUISet, BasebandSampleSink *rxChannel, QWidget* parent = 0);
|
2015-08-18 19:02:52 -04:00
|
|
|
virtual ~SSBDemodGUI();
|
2014-05-21 13:31:14 -04:00
|
|
|
|
2017-11-03 06:20:27 -04:00
|
|
|
bool blockApplySettings(bool block);
|
2017-10-01 19:45:19 -04:00
|
|
|
void applySettings(bool force = false);
|
2019-12-03 12:49:52 -05:00
|
|
|
void applyBandwidths(unsigned int spanLog2, bool force = false);
|
|
|
|
unsigned int spanLog2Max();
|
2017-07-27 15:14:50 -04:00
|
|
|
void displaySettings();
|
2017-07-27 04:50:41 -04:00
|
|
|
void displayAGCPowerThreshold(int value);
|
2019-06-09 03:25:18 -04:00
|
|
|
void displayAGCThresholdGate(int value);
|
2020-10-03 13:51:14 -04:00
|
|
|
bool handleMessage(const Message& message);
|
2022-04-12 10:20:45 -04:00
|
|
|
void makeUIConnections();
|
2022-04-13 05:08:21 -04:00
|
|
|
void updateAbsoluteCenterFrequency();
|
2017-07-27 04:50:41 -04:00
|
|
|
|
2015-05-11 05:03:01 -04:00
|
|
|
void leaveEvent(QEvent*);
|
|
|
|
void enterEvent(QEvent*);
|
2017-11-13 20:01:44 -05:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void on_deltaFrequency_changed(qint64 value);
|
|
|
|
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_agc_toggled(bool checked);
|
|
|
|
void on_agcClamping_toggled(bool checked);
|
|
|
|
void on_agcTimeLog2_valueChanged(int value);
|
|
|
|
void on_agcPowerThreshold_valueChanged(int value);
|
|
|
|
void on_agcThresholdGate_valueChanged(int value);
|
|
|
|
void on_audioMute_toggled(bool checked);
|
|
|
|
void on_spanLog2_valueChanged(int value);
|
2017-11-20 19:09:47 -05:00
|
|
|
void on_flipSidebands_clicked(bool checked);
|
2022-05-18 04:45:53 -04:00
|
|
|
void on_fftWindow_currentIndexChanged(int index);
|
2022-05-18 13:20:39 -04:00
|
|
|
void on_filterIndex_valueChanged(int value);
|
2017-11-13 20:01:44 -05:00
|
|
|
void onWidgetRolled(QWidget* widget, bool rollDown);
|
2017-11-21 15:33:46 -05:00
|
|
|
void onMenuDialogCalled(const QPoint& p);
|
2018-03-27 05:17:11 -04:00
|
|
|
void handleInputMessages();
|
|
|
|
void audioSelect();
|
2017-11-13 20:01:44 -05:00
|
|
|
void tick();
|
2014-05-21 13:31:14 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDE_SSBDEMODGUI_H
|