SDRAngel  4.11.5
Developer docs for <a href="https://github.com/f4exb/sdrangel">SDRangel<\a>, an Open Source Qt5 / OpenGL 3.0+ SDR and signal analyzer frontend to various hardware.
freqtrackerplugin.cpp
Go to the documentation of this file.
1 // Copyright (C) 2019 Edouard Griffiths, F4EXB. //
3 // //
4 // This program is free software; you can redistribute it and/or modify //
5 // it under the terms of the GNU General Public License as published by //
6 // the Free Software Foundation as version 3 of the License, or //
7 // (at your option) any later version. //
8 // //
9 // This program is distributed in the hope that it will be useful, //
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of //
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
12 // GNU General Public License V3 for more details. //
13 // //
14 // You should have received a copy of the GNU General Public License //
15 // along with this program. If not, see <http://www.gnu.org/licenses/>. //
17 
18 #include <QtPlugin>
19 #include "plugin/pluginapi.h"
20 
21 #ifndef SERVER_MODE
22 #include "freqtrackergui.h"
23 #endif
24 #include "freqtracker.h"
25 #include "freqtrackerplugin.h"
26 
28  QString("Frequency Tracker"),
29  QString("4.7.0"),
30  QString("(c) Edouard Griffiths, F4EXB"),
31  QString("https://github.com/f4exb/sdrangel"),
32  true,
33  QString("https://github.com/f4exb/sdrangel")
34 };
35 
37  QObject(parent),
38  m_pluginAPI(0)
39 {
40 }
41 
43 {
44  return m_pluginDescriptor;
45 }
46 
48 {
49  m_pluginAPI = pluginAPI;
50 
51  // register AM demodulator
53 }
54 
55 #ifdef SERVER_MODE
57  DeviceUISet *deviceUISet,
58  BasebandSampleSink *rxChannel)
59 {
60  return 0;
61 }
62 #else
64 {
65  return FreqTrackerGUI::create(m_pluginAPI, deviceUISet, rxChannel);
66 }
67 #endif
68 
70 {
71  return new FreqTracker(deviceAPI);
72 }
73 
75 {
76  return new FreqTracker(deviceAPI);
77 }
78 
void initPlugin(PluginAPI *pluginAPI)
void registerRxChannel(const QString &channelIdURI, const QString &channelId, PluginInterface *plugin)
Definition: pluginapi.cpp:4
PluginAPI * m_pluginAPI
FreqTrackerPlugin(QObject *parent=nullptr)
static const QString m_channelIdURI
Definition: freqtracker.h:185
static const QString m_channelId
Definition: freqtracker.h:186
const PluginDescriptor & getPluginDescriptor() const
static const PluginDescriptor m_pluginDescriptor
virtual ChannelAPI * createRxChannelCS(DeviceAPI *deviceAPI)
static FreqTrackerGUI * create(PluginAPI *pluginAPI, DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel)
virtual BasebandSampleSink * createRxChannelBS(DeviceAPI *deviceAPI)
virtual PluginInstanceGUI * createRxChannelGUI(DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel)