2016-06-19 03:56:49 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2016 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 00:57:41 -04:00
|
|
|
// (at your option) any later version. //
|
2016-06-19 03:56:49 -04: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>
|
2018-05-29 14:46:52 -04:00
|
|
|
|
2016-06-19 03:56:49 -04:00
|
|
|
#include "plugin/pluginapi.h"
|
|
|
|
#include "util/simpleserializer.h"
|
2018-05-29 14:46:52 -04:00
|
|
|
#include "device/devicesourceapi.h"
|
2016-06-19 03:56:49 -04:00
|
|
|
|
2018-05-29 14:46:52 -04:00
|
|
|
#ifdef SERVER_MODE
|
2019-02-02 18:26:26 -05:00
|
|
|
#include "remoteinput.h"
|
2018-05-29 14:46:52 -04:00
|
|
|
#else
|
2019-02-02 18:26:26 -05:00
|
|
|
#include "remoteinputgui.h"
|
2018-05-29 14:46:52 -04:00
|
|
|
#endif
|
2019-02-02 18:26:26 -05:00
|
|
|
#include "remoteinputplugin.h"
|
2016-06-19 03:56:49 -04:00
|
|
|
|
2019-02-02 18:26:26 -05:00
|
|
|
const PluginDescriptor RemoteInputPlugin::m_pluginDescriptor = {
|
2019-02-02 19:52:11 -05:00
|
|
|
QString("Remote device input"),
|
2019-04-24 19:06:08 -04:00
|
|
|
QString("4.5.6"),
|
2016-06-19 03:56:49 -04:00
|
|
|
QString("(c) Edouard Griffiths, F4EXB"),
|
|
|
|
QString("https://github.com/f4exb/sdrangel"),
|
|
|
|
true,
|
|
|
|
QString("https://github.com/f4exb/sdrangel")
|
|
|
|
};
|
|
|
|
|
2019-02-02 18:26:26 -05:00
|
|
|
const QString RemoteInputPlugin::m_hardwareID = "RemoteInput";
|
|
|
|
const QString RemoteInputPlugin::m_deviceTypeID = REMOTEINPUT_DEVICE_TYPE_ID;
|
2016-06-19 03:56:49 -04:00
|
|
|
|
2019-02-02 18:26:26 -05:00
|
|
|
RemoteInputPlugin::RemoteInputPlugin(QObject* parent) :
|
2016-06-19 03:56:49 -04:00
|
|
|
QObject(parent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-02-02 18:26:26 -05:00
|
|
|
const PluginDescriptor& RemoteInputPlugin::getPluginDescriptor() const
|
2016-06-19 03:56:49 -04:00
|
|
|
{
|
|
|
|
return m_pluginDescriptor;
|
|
|
|
}
|
|
|
|
|
2019-02-02 18:26:26 -05:00
|
|
|
void RemoteInputPlugin::initPlugin(PluginAPI* pluginAPI)
|
2016-06-19 03:56:49 -04:00
|
|
|
{
|
|
|
|
pluginAPI->registerSampleSource(m_deviceTypeID, this);
|
|
|
|
}
|
|
|
|
|
2019-02-02 18:26:26 -05:00
|
|
|
PluginInterface::SamplingDevices RemoteInputPlugin::enumSampleSources()
|
2016-06-19 03:56:49 -04:00
|
|
|
{
|
2016-10-13 16:23:43 -04:00
|
|
|
SamplingDevices result;
|
2016-06-19 03:56:49 -04:00
|
|
|
|
2017-11-01 22:42:59 -04:00
|
|
|
result.append(SamplingDevice(
|
2019-02-02 18:26:26 -05:00
|
|
|
"RemoteInput",
|
2017-11-01 22:42:59 -04:00
|
|
|
m_hardwareID,
|
|
|
|
m_deviceTypeID,
|
|
|
|
QString::null,
|
|
|
|
0,
|
|
|
|
PluginInterface::SamplingDevice::BuiltInDevice,
|
|
|
|
true,
|
2017-11-18 19:05:16 -05:00
|
|
|
1,
|
2017-11-01 22:42:59 -04:00
|
|
|
0));
|
2016-06-19 03:56:49 -04:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2018-05-29 14:46:52 -04:00
|
|
|
#ifdef SERVER_MODE
|
2019-02-02 18:26:26 -05:00
|
|
|
PluginInstanceGUI* RemoteInputPlugin::createSampleSourcePluginInstanceGUI(
|
2018-05-29 14:46:52 -04:00
|
|
|
const QString& sourceId __attribute((unused)),
|
|
|
|
QWidget **widget __attribute((unused)),
|
|
|
|
DeviceUISet *deviceUISet __attribute((unused)))
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#else
|
2019-02-02 18:26:26 -05:00
|
|
|
PluginInstanceGUI* RemoteInputPlugin::createSampleSourcePluginInstanceGUI(
|
2017-10-29 19:02:28 -04:00
|
|
|
const QString& sourceId,
|
|
|
|
QWidget **widget,
|
|
|
|
DeviceUISet *deviceUISet)
|
2016-06-19 03:56:49 -04:00
|
|
|
{
|
|
|
|
if(sourceId == m_deviceTypeID)
|
|
|
|
{
|
2019-02-02 18:26:26 -05:00
|
|
|
RemoteInputGui* gui = new RemoteInputGui(deviceUISet);
|
2016-06-19 03:56:49 -04:00
|
|
|
*widget = gui;
|
|
|
|
return gui;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-09-14 07:34:32 -04:00
|
|
|
return 0;
|
2016-06-19 03:56:49 -04:00
|
|
|
}
|
|
|
|
}
|
2018-05-29 14:46:52 -04:00
|
|
|
#endif
|
2017-09-14 07:34:32 -04:00
|
|
|
|
2019-02-02 18:26:26 -05:00
|
|
|
DeviceSampleSource *RemoteInputPlugin::createSampleSourcePluginInstanceInput(const QString& sourceId, DeviceSourceAPI *deviceAPI)
|
2017-09-14 07:34:32 -04:00
|
|
|
{
|
|
|
|
if (sourceId == m_deviceTypeID)
|
|
|
|
{
|
2019-02-02 18:26:26 -05:00
|
|
|
RemoteInput* input = new RemoteInput(deviceAPI);
|
2017-09-14 07:34:32 -04:00
|
|
|
return input;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|