mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 15:31:15 -05:00
55 lines
1.4 KiB
C++
55 lines
1.4 KiB
C++
|
#include "amplugin.h"
|
||
|
|
||
|
#include <QtPlugin>
|
||
|
#include <QAction>
|
||
|
#include "plugin/pluginapi.h"
|
||
|
#include "amdemodgui.h"
|
||
|
|
||
|
const PluginDescriptor AMPlugin::m_pluginDescriptor = {
|
||
|
QString("AM Demodulator"),
|
||
|
QString("---"),
|
||
|
QString("(c) Edouard Griffiths, F4EXB"),
|
||
|
QString("https://github.com/f4exb/rtl-sdrangelove/tree/f4exb"),
|
||
|
true,
|
||
|
QString("https://github.com/f4exb/rtl-sdrangelove/tree/f4exb")
|
||
|
};
|
||
|
|
||
|
AMPlugin::AMPlugin(QObject* parent) :
|
||
|
QObject(parent)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
const PluginDescriptor& AMPlugin::getPluginDescriptor() const
|
||
|
{
|
||
|
return m_pluginDescriptor;
|
||
|
}
|
||
|
|
||
|
void AMPlugin::initPlugin(PluginAPI* pluginAPI)
|
||
|
{
|
||
|
m_pluginAPI = pluginAPI;
|
||
|
|
||
|
// register AM demodulator
|
||
|
QAction* action = new QAction(tr("&AM Demodulator"), this);
|
||
|
connect(action, SIGNAL(triggered()), this, SLOT(createInstanceAM()));
|
||
|
m_pluginAPI->registerChannel("de.maintech.sdrangelove.channel.am", this, action);
|
||
|
}
|
||
|
|
||
|
PluginGUI* AMPlugin::createChannel(const QString& channelName)
|
||
|
{
|
||
|
if(channelName == "de.maintech.sdrangelove.channel.am") {
|
||
|
AMDemodGUI* gui = AMDemodGUI::create(m_pluginAPI);
|
||
|
m_pluginAPI->registerChannelInstance("de.maintech.sdrangelove.channel.am", gui);
|
||
|
m_pluginAPI->addChannelRollup(gui);
|
||
|
return gui;
|
||
|
} else {
|
||
|
return NULL;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void AMPlugin::createInstanceAM()
|
||
|
{
|
||
|
AMDemodGUI* gui = AMDemodGUI::create(m_pluginAPI);
|
||
|
m_pluginAPI->registerChannelInstance("de.maintech.sdrangelove.channel.am", gui);
|
||
|
m_pluginAPI->addChannelRollup(gui);
|
||
|
}
|