2015-11-19 02:55:58 -05:00
|
|
|
#ifndef INCLUDE_UDPSRCGUI_H
|
|
|
|
#define INCLUDE_UDPSRCGUI_H
|
2015-11-18 21:27:37 -05:00
|
|
|
|
|
|
|
#include <QHostAddress>
|
|
|
|
#include "gui/rollupwidget.h"
|
|
|
|
#include "plugin/plugingui.h"
|
|
|
|
#include "dsp/channelmarker.h"
|
|
|
|
#include "dsp/movingaverage.h"
|
|
|
|
|
|
|
|
#include "udpsrc.h"
|
|
|
|
|
|
|
|
class PluginAPI;
|
|
|
|
class ThreadedSampleSink;
|
|
|
|
class Channelizer;
|
|
|
|
class UDPSrc;
|
|
|
|
class SpectrumVis;
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class UDPSrcGUI;
|
|
|
|
}
|
|
|
|
|
|
|
|
class UDPSrcGUI : public RollupWidget, public PluginGUI {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
static UDPSrcGUI* create(PluginAPI* pluginAPI);
|
|
|
|
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);
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void channelMarkerChanged();
|
|
|
|
void on_deltaFrequency_changed(quint64 value);
|
|
|
|
void on_deltaMinus_toggled(bool minus);
|
|
|
|
void on_sampleFormat_currentIndexChanged(int index);
|
|
|
|
void on_sampleRate_textEdited(const QString& arg1);
|
|
|
|
void on_rfBandwidth_textEdited(const QString& arg1);
|
2015-12-01 20:28:31 -05:00
|
|
|
void on_udpAddress_textEdited(const QString& arg1);
|
2015-11-18 21:27:37 -05:00
|
|
|
void on_udpPort_textEdited(const QString& arg1);
|
|
|
|
void on_applyBtn_clicked();
|
|
|
|
void onWidgetRolled(QWidget* widget, bool rollDown);
|
|
|
|
void onMenuDoubleClicked();
|
|
|
|
void on_boost_valueChanged(int value);
|
|
|
|
void tick();
|
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::UDPSrcGUI* ui;
|
|
|
|
PluginAPI* m_pluginAPI;
|
2015-11-19 02:55:58 -05:00
|
|
|
UDPSrc* m_udpSrc;
|
2015-11-18 21:27:37 -05:00
|
|
|
ChannelMarker m_channelMarker;
|
|
|
|
MovingAverage<Real> m_channelPowerDbAvg;
|
|
|
|
|
|
|
|
// settings
|
|
|
|
UDPSrc::SampleFormat m_sampleFormat;
|
|
|
|
Real m_outputSampleRate;
|
|
|
|
Real m_rfBandwidth;
|
|
|
|
int m_boost;
|
2015-12-01 20:28:31 -05:00
|
|
|
QString m_udpAddress;
|
2015-11-19 02:55:58 -05:00
|
|
|
int m_udpPort;
|
2015-11-18 21:27:37 -05:00
|
|
|
bool m_basicSettingsShown;
|
|
|
|
bool m_doApplySettings;
|
|
|
|
|
|
|
|
// RF path
|
|
|
|
ThreadedSampleSink* m_threadedChannelizer;
|
|
|
|
Channelizer* m_channelizer;
|
|
|
|
SpectrumVis* m_spectrumVis;
|
|
|
|
|
|
|
|
explicit UDPSrcGUI(PluginAPI* pluginAPI, QWidget* parent = 0);
|
|
|
|
virtual ~UDPSrcGUI();
|
|
|
|
|
|
|
|
void blockApplySettings(bool block);
|
|
|
|
void applySettings();
|
|
|
|
};
|
|
|
|
|
2015-11-19 02:55:58 -05:00
|
|
|
#endif // INCLUDE_UDPSRCGUI_H
|