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.
udpsourceplugin.cpp
Go to the documentation of this file.
1 // Copyright (C) 2017 F4EXB //
3 // written by Edouard Griffiths //
4 // //
5 // This program is free software; you can redistribute it and/or modify //
6 // it under the terms of the GNU General Public License as published by //
7 // the Free Software Foundation as version 3 of the License, or //
8 // (at your option) any later version. //
9 // //
10 // This program is distributed in the hope that it will be useful, //
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of //
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
13 // GNU General Public License V3 for more details. //
14 // //
15 // You should have received a copy of the GNU General Public License //
16 // along with this program. If not, see <http://www.gnu.org/licenses/>. //
18 
19 #include "udpsourceplugin.h"
20 
21 #include <QtPlugin>
22 #include "plugin/pluginapi.h"
23 
24 #ifndef SERVER_MODE
25 #include "udpsourcegui.h"
26 #endif
27 #include "udpsource.h"
28 
30  QString("UDP Channel Source"),
31  QString("4.5.2"),
32  QString("(c) Edouard Griffiths, F4EXB"),
33  QString("https://github.com/f4exb/sdrangel"),
34  true,
35  QString("https://github.com/f4exb/sdrangel")
36 };
37 
39  QObject(parent),
40  m_pluginAPI(0)
41 {
42 }
43 
45 {
46  return m_pluginDescriptor;
47 }
48 
50 {
51  m_pluginAPI = pluginAPI;
52 
53  // register TCP Channel Source
55 }
56 
57 #ifdef SERVER_MODE
59  DeviceUISet *deviceUISet,
60  BasebandSampleSource *txChannel)
61 {
62  return 0;
63 }
64 #else
66 {
67  return UDPSourceGUI::create(m_pluginAPI, deviceUISet, txChannel);
68 }
69 #endif
70 
72 {
73  return new UDPSource(deviceAPI);
74 }
75 
77 {
78  return new UDPSource(deviceAPI);
79 }
80 
81 
void registerTxChannel(const QString &channelIdURI, const QString &channelId, PluginInterface *plugin)
Definition: pluginapi.cpp:19
void initPlugin(PluginAPI *pluginAPI)
static const QString m_channelId
Definition: udpsource.h:144
static const QString m_channelIdURI
Definition: udpsource.h:143
static UDPSourceGUI * create(PluginAPI *pluginAPI, DeviceUISet *deviceUISet, BasebandSampleSource *channelTx)
PluginAPI * m_pluginAPI
UDPSourcePlugin(QObject *parent=0)
virtual ChannelAPI * createTxChannelCS(DeviceAPI *deviceAPI)
static const PluginDescriptor m_pluginDescriptor
virtual PluginInstanceGUI * createTxChannelGUI(DeviceUISet *deviceUISet, BasebandSampleSource *txChannel)
const PluginDescriptor & getPluginDescriptor() const
virtual BasebandSampleSource * createTxChannelBS(DeviceAPI *deviceAPI)