mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-04 16:01:14 -05:00
55 lines
1.4 KiB
C++
55 lines
1.4 KiB
C++
#include <QtPlugin>
|
|
#include <QAction>
|
|
#include "plugin/pluginapi.h"
|
|
|
|
#include "wfmdemodgui.h"
|
|
#include "wfmplugin.h"
|
|
|
|
const PluginDescriptor WFMPlugin::m_pluginDescriptor = {
|
|
QString("WFM Demodulator"),
|
|
QString("1.0"),
|
|
QString("(c) Edouard Griffiths, F4EXB"),
|
|
QString("https://github.com/f4exb/rtl-sdrangelove/tree/f4exb"),
|
|
true,
|
|
QString("https://github.com/f4exb/rtl-sdrangelove/tree/f4exb")
|
|
};
|
|
|
|
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);
|
|
}
|