2014-05-18 11:52:39 -04:00
|
|
|
#include <QtPlugin>
|
|
|
|
#include "plugin/pluginapi.h"
|
|
|
|
#include "tcpsrcplugin.h"
|
|
|
|
#include "tcpsrcgui.h"
|
|
|
|
|
|
|
|
const PluginDescriptor TCPSrcPlugin::m_pluginDescriptor = {
|
|
|
|
QString("TCP Channel Source"),
|
2015-11-18 00:05:13 -05:00
|
|
|
QString("---"),
|
|
|
|
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) :
|
|
|
|
QObject(parent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
const PluginDescriptor& TCPSrcPlugin::getPluginDescriptor() const
|
|
|
|
{
|
|
|
|
return m_pluginDescriptor;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TCPSrcPlugin::initPlugin(PluginAPI* pluginAPI)
|
|
|
|
{
|
|
|
|
m_pluginAPI = pluginAPI;
|
|
|
|
|
|
|
|
// register TCP Channel Source
|
2016-05-16 13:37:53 -04:00
|
|
|
m_pluginAPI->registerChannel(TCPSrcGUI::m_channelID, this);
|
2014-05-18 11:52:39 -04:00
|
|
|
}
|
|
|
|
|
2016-05-16 04:05:09 -04:00
|
|
|
PluginGUI* TCPSrcPlugin::createChannel(const QString& channelName, DeviceAPI *deviceAPI)
|
2014-05-18 11:52:39 -04:00
|
|
|
{
|
2016-05-16 13:37:53 -04:00
|
|
|
if(channelName == TCPSrcGUI::m_channelID)
|
|
|
|
{
|
2016-05-16 04:05:09 -04:00
|
|
|
TCPSrcGUI* gui = TCPSrcGUI::create(m_pluginAPI, deviceAPI);
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-16 04:05:09 -04:00
|
|
|
void TCPSrcPlugin::createInstanceTCPSrc(DeviceAPI *deviceAPI)
|
2014-05-18 11:52:39 -04:00
|
|
|
{
|
2016-05-16 04:05:09 -04:00
|
|
|
TCPSrcGUI* gui = TCPSrcGUI::create(m_pluginAPI, deviceAPI);
|
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
|
|
|
}
|