mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-05 00:11:16 -05:00
54 lines
1.4 KiB
C++
54 lines
1.4 KiB
C++
#include <QtPlugin>
|
|
#include <QAction>
|
|
#include "plugin/pluginapi.h"
|
|
#include "wfmplugin.h"
|
|
#include "wfmdemodgui.h"
|
|
|
|
const PluginDescriptor WFMPlugin::m_pluginDescriptor = {
|
|
QString("WFM Demodulator"),
|
|
QString("1.0"),
|
|
QString("(c) 2014 JohnGreb"),
|
|
QString("http://www.maintech.de"),
|
|
true,
|
|
QString("github.com/hexameron/rtl-sdrangelove")
|
|
};
|
|
|
|
WFMPlugin::WFMPlugin(QObject* parent) :
|
|
QObject(parent)
|
|
{
|
|
}
|
|
|
|
const PluginDescriptor& WFMPlugin::getPluginDescriptor() const
|
|
{
|
|
return m_pluginDescriptor;
|
|
}
|
|
|
|
void WFMPlugin::initPlugin(PluginAPI* pluginAPI)
|
|
{
|
|
m_pluginAPI = pluginAPI;
|
|
|
|
// register WFM demodulator
|
|
QAction* action = new QAction(tr("&WFM Demodulator"), this);
|
|
connect(action, SIGNAL(triggered()), this, SLOT(createInstanceWFM()));
|
|
m_pluginAPI->registerChannel("de.maintech.sdrangelove.channel.wfm", this, action);
|
|
}
|
|
|
|
PluginGUI* WFMPlugin::createChannel(const QString& channelName)
|
|
{
|
|
if(channelName == "de.maintech.sdrangelove.channel.wfm") {
|
|
WFMDemodGUI* gui = WFMDemodGUI::create(m_pluginAPI);
|
|
m_pluginAPI->registerChannelInstance("de.maintech.sdrangelove.channel.wfm", gui);
|
|
m_pluginAPI->addChannelRollup(gui);
|
|
return gui;
|
|
} else {
|
|
return NULL;
|
|
}
|
|
}
|
|
|
|
void WFMPlugin::createInstanceWFM()
|
|
{
|
|
WFMDemodGUI* gui = WFMDemodGUI::create(m_pluginAPI);
|
|
m_pluginAPI->registerChannelInstance("de.maintech.sdrangelove.channel.wfm", gui);
|
|
m_pluginAPI->addChannelRollup(gui);
|
|
}
|