mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 15:31:15 -05:00
53 lines
1.2 KiB
C++
53 lines
1.2 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/sdrangel"),
|
|
true,
|
|
QString("https://github.com/f4exb/sdrangel")
|
|
};
|
|
|
|
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
|
|
m_pluginAPI->registerChannel("de.maintech.sdrangelove.channel.am", this);
|
|
}
|
|
|
|
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);
|
|
}
|