sdrangel/plugins/channelrx/chanalyzer/chanalyzerplugin.cpp

80 wiersze
2.8 KiB
C++
Czysty Zwykły widok Historia

2017-01-29 18:51:45 +00:00
///////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2017 Edouard Griffiths, F4EXB //
// //
// This program is free software; you can redistribute it and/or modify //
// it under the terms of the GNU General Public License as published by //
// the Free Software Foundation as version 3 of the License, or //
2019-04-11 04:39:30 +00:00
// (at your option) any later version. //
2017-01-29 18:51:45 +00:00
// //
// This program is distributed in the hope that it will be useful, //
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
// GNU General Public License V3 for more details. //
// //
// You should have received a copy of the GNU General Public License //
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
///////////////////////////////////////////////////////////////////////////////////
#include <QtPlugin>
#include "plugin/pluginapi.h"
#include "chanalyzer.h"
#include "chanalyzerplugin.h"
#include "chanalyzergui.h"
#include "chanalyzerwebapiadapter.h"
2017-01-29 18:51:45 +00:00
const PluginDescriptor ChannelAnalyzerPlugin::m_pluginDescriptor = {
ChannelAnalyzer::m_channelId,
2020-11-21 14:38:04 +00:00
QStringLiteral("Channel Analyzer"),
2022-08-14 09:52:25 +00:00
QStringLiteral("7.6.2"),
2020-11-21 14:38:04 +00:00
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
2017-01-29 18:51:45 +00:00
true,
2020-11-21 14:38:04 +00:00
QStringLiteral("https://github.com/f4exb/sdrangel")
2017-01-29 18:51:45 +00:00
};
ChannelAnalyzerPlugin::ChannelAnalyzerPlugin(QObject* parent) :
2017-05-05 08:40:45 +00:00
QObject(parent),
m_pluginAPI(0)
2017-01-29 18:51:45 +00:00
{
}
const PluginDescriptor& ChannelAnalyzerPlugin::getPluginDescriptor() const
2017-01-29 18:51:45 +00:00
{
return m_pluginDescriptor;
}
void ChannelAnalyzerPlugin::initPlugin(PluginAPI* pluginAPI)
2017-01-29 18:51:45 +00:00
{
m_pluginAPI = pluginAPI;
// register demodulator
m_pluginAPI->registerRxChannel(ChannelAnalyzer::m_channelIdURI, ChannelAnalyzer::m_channelId, this);
2017-01-29 18:51:45 +00:00
}
void ChannelAnalyzerPlugin::createRxChannel(DeviceAPI *deviceAPI, BasebandSampleSink **bs, ChannelAPI **cs) const
2017-01-29 18:51:45 +00:00
{
if (bs || cs)
{
ChannelAnalyzer *instance = new ChannelAnalyzer(deviceAPI);
if (bs) {
*bs = instance;
}
if (cs) {
*cs = instance;
}
}
}
ChannelGUI* ChannelAnalyzerPlugin::createRxChannelGUI(DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel) const
2017-12-17 22:15:42 +00:00
{
return ChannelAnalyzerGUI::create(m_pluginAPI, deviceUISet, rxChannel);
2017-12-17 22:15:42 +00:00
}
ChannelWebAPIAdapter* ChannelAnalyzerPlugin::createChannelWebAPIAdapter() const
{
return new ChannelAnalyzerWebAPIAdapter();
}