2014-05-21 13:31:14 -04:00
|
|
|
#include <QtPlugin>
|
|
|
|
#include <QAction>
|
|
|
|
#include "plugin/pluginapi.h"
|
|
|
|
#include "ssbplugin.h"
|
|
|
|
#include "ssbdemodgui.h"
|
|
|
|
|
|
|
|
const PluginDescriptor SSBPlugin::m_pluginDescriptor = {
|
|
|
|
QString("SSB Demodulator"),
|
2014-12-03 13:41:38 -05:00
|
|
|
QString("1.0"),
|
|
|
|
QString("(c) 2014 John Greb"),
|
2014-05-21 13:31:14 -04:00
|
|
|
QString("http://www.maintech.de"),
|
|
|
|
true,
|
2014-12-03 13:41:38 -05:00
|
|
|
QString("github.com/hexameron/rtl-sdrangelove")
|
2014-05-21 13:31:14 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
SSBPlugin::SSBPlugin(QObject* parent) :
|
|
|
|
QObject(parent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
const PluginDescriptor& SSBPlugin::getPluginDescriptor() const
|
|
|
|
{
|
|
|
|
return m_pluginDescriptor;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SSBPlugin::initPlugin(PluginAPI* pluginAPI)
|
|
|
|
{
|
|
|
|
m_pluginAPI = pluginAPI;
|
|
|
|
|
|
|
|
// register demodulator
|
|
|
|
QAction* action = new QAction(tr("&SSB Demodulator"), this);
|
|
|
|
connect(action, SIGNAL(triggered()), this, SLOT(createInstanceSSB()));
|
|
|
|
m_pluginAPI->registerChannel("de.maintech.sdrangelove.channel.ssb", this, action);
|
|
|
|
}
|
|
|
|
|
|
|
|
PluginGUI* SSBPlugin::createChannel(const QString& channelName)
|
|
|
|
{
|
|
|
|
if(channelName == "de.maintech.sdrangelove.channel.ssb") {
|
|
|
|
SSBDemodGUI* gui = SSBDemodGUI::create(m_pluginAPI);
|
|
|
|
m_pluginAPI->registerChannelInstance("de.maintech.sdrangelove.channel.ssb", gui);
|
|
|
|
m_pluginAPI->addChannelRollup(gui);
|
|
|
|
return gui;
|
|
|
|
} else {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SSBPlugin::createInstanceSSB()
|
|
|
|
{
|
|
|
|
SSBDemodGUI* gui = SSBDemodGUI::create(m_pluginAPI);
|
|
|
|
m_pluginAPI->registerChannelInstance("de.maintech.sdrangelove.channel.ssb", gui);
|
|
|
|
m_pluginAPI->addChannelRollup(gui);
|
|
|
|
}
|