mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 15:31:15 -05:00
92 lines
2.3 KiB
C++
92 lines
2.3 KiB
C++
#ifndef INCLUDE_TCPSRCGUI_H
|
|
#define INCLUDE_TCPSRCGUI_H
|
|
|
|
#include <plugin/plugininstancegui.h>
|
|
#include <QHostAddress>
|
|
|
|
#include "gui/rollupwidget.h"
|
|
#include "dsp/channelmarker.h"
|
|
#include "dsp/movingaverage.h"
|
|
#include "util/messagequeue.h"
|
|
|
|
#include "tcpsrc.h"
|
|
|
|
class PluginAPI;
|
|
class DeviceSourceAPI;
|
|
class ThreadedBasebandSampleSink;
|
|
class DownChannelizer;
|
|
class TCPSrc;
|
|
class SpectrumVis;
|
|
|
|
namespace Ui {
|
|
class TCPSrcGUI;
|
|
}
|
|
|
|
class TCPSrcGUI : public RollupWidget, public PluginInstanceGUI {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
static TCPSrcGUI* create(PluginAPI* pluginAPI, DeviceSourceAPI *deviceAPI);
|
|
virtual 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 MessageQueue *getInputMessageQueue() { return &m_inputMessageQueue; }
|
|
virtual bool handleMessage(const Message& message);
|
|
|
|
static const QString m_channelID;
|
|
|
|
private slots:
|
|
void channelMarkerChanged();
|
|
void on_deltaFrequency_changed(qint64 value);
|
|
void on_sampleFormat_currentIndexChanged(int index);
|
|
void on_sampleRate_textEdited(const QString& arg1);
|
|
void on_rfBandwidth_textEdited(const QString& arg1);
|
|
void on_tcpPort_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::TCPSrcGUI* ui;
|
|
PluginAPI* m_pluginAPI;
|
|
DeviceSourceAPI* m_deviceAPI;
|
|
TCPSrc* m_tcpSrc;
|
|
ChannelMarker m_channelMarker;
|
|
MovingAverage<double> m_channelPowerDbAvg;
|
|
|
|
// settings
|
|
TCPSrc::SampleFormat m_sampleFormat;
|
|
Real m_outputSampleRate;
|
|
Real m_rfBandwidth;
|
|
int m_boost;
|
|
int m_tcpPort;
|
|
bool m_basicSettingsShown;
|
|
bool m_doApplySettings;
|
|
|
|
// RF path
|
|
ThreadedBasebandSampleSink* m_threadedChannelizer;
|
|
DownChannelizer* m_channelizer;
|
|
SpectrumVis* m_spectrumVis;
|
|
MessageQueue m_inputMessageQueue;
|
|
|
|
explicit TCPSrcGUI(PluginAPI* pluginAPI, DeviceSourceAPI *deviceAPI, QWidget* parent = 0);
|
|
virtual ~TCPSrcGUI();
|
|
|
|
void blockApplySettings(bool block);
|
|
void applySettings();
|
|
|
|
void addConnection(quint32 id, const QHostAddress& peerAddress, int peerPort);
|
|
void delConnection(quint32 id);
|
|
};
|
|
|
|
#endif // INCLUDE_TCPSRCGUI_H
|