2015-05-11 20:53:35 -04:00
|
|
|
#include "amplugin.h"
|
|
|
|
|
|
|
|
#include <QtPlugin>
|
2016-05-15 04:34:48 -04:00
|
|
|
#include <QAction>
|
2015-05-11 20:53:35 -04:00
|
|
|
#include "plugin/pluginapi.h"
|
|
|
|
#include "amdemodgui.h"
|
|
|
|
|
|
|
|
const PluginDescriptor AMPlugin::m_pluginDescriptor = {
|
|
|
|
QString("AM Demodulator"),
|
2015-09-01 19:16:40 -04:00
|
|
|
QString("---"),
|
2015-05-11 20:53:35 -04:00
|
|
|
QString("(c) Edouard Griffiths, F4EXB"),
|
2015-09-01 19:16:40 -04:00
|
|
|
QString("https://github.com/f4exb/sdrangel"),
|
2015-05-11 20:53:35 -04:00
|
|
|
true,
|
2015-09-01 19:16:40 -04:00
|
|
|
QString("https://github.com/f4exb/sdrangel")
|
2015-05-11 20:53:35 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
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
|
2016-05-16 13:37:53 -04:00
|
|
|
m_pluginAPI->registerChannel(AMDemodGUI::m_channelID, this);
|
2015-05-11 20:53:35 -04:00
|
|
|
}
|
|
|
|
|
2016-05-15 21:21:21 -04:00
|
|
|
PluginGUI* AMPlugin::createChannel(const QString& channelName, DeviceAPI *deviceAPI)
|
2015-05-11 20:53:35 -04:00
|
|
|
{
|
2016-05-16 13:37:53 -04:00
|
|
|
if(channelName == AMDemodGUI::m_channelID)
|
|
|
|
{
|
2016-05-15 21:21:21 -04:00
|
|
|
AMDemodGUI* gui = AMDemodGUI::create(m_pluginAPI, deviceAPI);
|
2016-05-16 13:37:53 -04:00
|
|
|
// deviceAPI->registerChannelInstance("de.maintech.sdrangelove.channel.am", gui);
|
2016-05-15 21:21:21 -04:00
|
|
|
// m_pluginAPI->addChannelRollup(gui);
|
2016-05-15 04:34:48 -04:00
|
|
|
return gui;
|
2015-05-11 20:53:35 -04:00
|
|
|
} else {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-15 21:21:21 -04:00
|
|
|
void AMPlugin::createInstanceAM(DeviceAPI *deviceAPI)
|
2015-05-11 20:53:35 -04:00
|
|
|
{
|
2016-05-15 21:21:21 -04:00
|
|
|
AMDemodGUI* gui = AMDemodGUI::create(m_pluginAPI, deviceAPI);
|
2016-05-16 13:37:53 -04:00
|
|
|
// deviceAPI->registerChannelInstance("de.maintech.sdrangelove.channel.am", gui);
|
2016-05-16 04:05:09 -04:00
|
|
|
// m_pluginAPI->addChannelRollup(gui);
|
2015-05-11 20:53:35 -04:00
|
|
|
}
|