2014-05-18 11:52:39 -04:00
|
|
|
#ifndef INCLUDE_TCPSRCGUI_H
|
|
|
|
#define INCLUDE_TCPSRCGUI_H
|
|
|
|
|
|
|
|
#include <QHostAddress>
|
|
|
|
#include "gui/rollupwidget.h"
|
|
|
|
#include "plugin/plugingui.h"
|
|
|
|
#include "tcpsrc.h"
|
|
|
|
|
|
|
|
class PluginAPI;
|
|
|
|
class ChannelMarker;
|
|
|
|
class Channelizer;
|
|
|
|
class TCPSrc;
|
|
|
|
class SpectrumVis;
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class TCPSrcGUI;
|
|
|
|
}
|
|
|
|
|
|
|
|
class TCPSrcGUI : public RollupWidget, public PluginGUI {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
static TCPSrcGUI* create(PluginAPI* pluginAPI);
|
|
|
|
void destroy();
|
|
|
|
|
|
|
|
void setName(const QString& name);
|
2015-06-06 21:30:28 -04:00
|
|
|
QString getName() const;
|
2015-07-18 20:07:40 -04:00
|
|
|
qint64 getCenterFrequency() const;
|
2014-05-18 11:52:39 -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-18 11:52:39 -04:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void channelMarkerChanged();
|
|
|
|
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();
|
2014-12-28 14:04:26 -05:00
|
|
|
void on_boost_valueChanged(int value);
|
2014-05-18 11:52:39 -04:00
|
|
|
private:
|
|
|
|
Ui::TCPSrcGUI* ui;
|
|
|
|
PluginAPI* m_pluginAPI;
|
2014-11-21 14:44:19 -05:00
|
|
|
TCPSrc* m_tcpSrc;
|
2014-05-18 11:52:39 -04:00
|
|
|
ChannelMarker* m_channelMarker;
|
|
|
|
|
|
|
|
// settings
|
|
|
|
TCPSrc::SampleFormat m_sampleFormat;
|
|
|
|
Real m_outputSampleRate;
|
|
|
|
Real m_rfBandwidth;
|
2014-12-28 14:04:26 -05:00
|
|
|
int m_boost;
|
2014-05-18 11:52:39 -04:00
|
|
|
int m_tcpPort;
|
|
|
|
bool m_basicSettingsShown;
|
2015-08-18 19:02:52 -04:00
|
|
|
bool m_doApplySettings;
|
2014-05-18 11:52:39 -04:00
|
|
|
|
|
|
|
// RF path
|
|
|
|
Channelizer* m_channelizer;
|
|
|
|
SpectrumVis* m_spectrumVis;
|
|
|
|
|
|
|
|
explicit TCPSrcGUI(PluginAPI* pluginAPI, QWidget* parent = NULL);
|
2015-08-17 02:29:34 -04:00
|
|
|
virtual ~TCPSrcGUI();
|
2014-05-18 11:52:39 -04:00
|
|
|
|
2015-08-18 19:02:52 -04:00
|
|
|
void blockApplySettings(bool block);
|
2014-05-18 11:52:39 -04:00
|
|
|
void applySettings();
|
|
|
|
|
|
|
|
void addConnection(quint32 id, const QHostAddress& peerAddress, int peerPort);
|
|
|
|
void delConnection(quint32 id);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDE_TCPSRCGUI_H
|