2017-10-31 03:24:05 -04:00
|
|
|
#include "tcpsrcplugin.h"
|
2016-10-02 07:18:07 -04:00
|
|
|
|
2014-05-18 11:52:39 -04:00
|
|
|
#include <QtPlugin>
|
|
|
|
#include "plugin/pluginapi.h"
|
2016-10-02 07:18:07 -04:00
|
|
|
|
2017-10-31 03:24:05 -04:00
|
|
|
#include "tcpsrcgui.h"
|
2014-05-18 11:52:39 -04:00
|
|
|
|
|
|
|
const PluginDescriptor TCPSrcPlugin::m_pluginDescriptor = {
|
|
|
|
QString("TCP Channel Source"),
|
2017-10-31 03:24:05 -04:00
|
|
|
QString("3.7.9"),
|
2015-11-18 00:05:13 -05:00
|
|
|
QString("(c) Edouard Griffiths, F4EXB"),
|
|
|
|
QString("https://github.com/f4exb/sdrangel"),
|
2014-05-18 11:52:39 -04:00
|
|
|
true,
|
2015-11-18 00:05:13 -05:00
|
|
|
QString("https://github.com/f4exb/sdrangel")
|
2014-05-18 11:52:39 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
TCPSrcPlugin::TCPSrcPlugin(QObject* parent) :
|
2017-05-05 04:40:45 -04:00
|
|
|
QObject(parent),
|
|
|
|
m_pluginAPI(0)
|
2014-05-18 11:52:39 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
const PluginDescriptor& TCPSrcPlugin::getPluginDescriptor() const
|
|
|
|
{
|
|
|
|
return m_pluginDescriptor;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TCPSrcPlugin::initPlugin(PluginAPI* pluginAPI)
|
|
|
|
{
|
|
|
|
m_pluginAPI = pluginAPI;
|
|
|
|
|
|
|
|
// register TCP Channel Source
|
2016-10-13 16:23:43 -04:00
|
|
|
m_pluginAPI->registerRxChannel(TCPSrcGUI::m_channelID, this);
|
2014-05-18 11:52:39 -04:00
|
|
|
}
|
|
|
|
|
2017-10-31 03:24:05 -04:00
|
|
|
PluginInstanceGUI* TCPSrcPlugin::createRxChannel(const QString& channelName, DeviceUISet *deviceUISet)
|
2014-05-18 11:52:39 -04:00
|
|
|
{
|
2016-05-16 13:37:53 -04:00
|
|
|
if(channelName == TCPSrcGUI::m_channelID)
|
|
|
|
{
|
2017-10-31 03:24:05 -04:00
|
|
|
TCPSrcGUI* gui = TCPSrcGUI::create(m_pluginAPI, deviceUISet);
|
2016-05-16 13:37:53 -04:00
|
|
|
// deviceAPI->registerChannelInstance("sdrangel.channel.tcpsrc", gui);
|
2016-05-16 04:05:09 -04:00
|
|
|
// m_pluginAPI->addChannelRollup(gui);
|
2014-05-18 11:52:39 -04:00
|
|
|
return gui;
|
|
|
|
} else {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-31 03:24:05 -04:00
|
|
|
void TCPSrcPlugin::createInstanceTCPSrc(DeviceUISet *deviceUISet)
|
2014-05-18 11:52:39 -04:00
|
|
|
{
|
2017-10-31 03:24:05 -04:00
|
|
|
TCPSrcGUI::create(m_pluginAPI, deviceUISet);
|
2016-05-16 13:37:53 -04:00
|
|
|
// deviceAPI->registerChannelInstance("sdrangel.channel.tcpsrc", gui);
|
2016-05-16 04:05:09 -04:00
|
|
|
// m_pluginAPI->addChannelRollup(gui);
|
2014-05-18 11:52:39 -04:00
|
|
|
}
|