2023-11-18 04:07:41 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2012 maintech GmbH, Otto-Hahn-Str. 15, 97204 Hoechberg, Germany //
|
|
|
|
// written by Christian Daniel //
|
|
|
|
// Copyright (C) 2015-2017, 2019-2020 Edouard Griffiths, F4EXB <f4exb06@gmail.com> //
|
|
|
|
// Copyright (C) 2020 Kacper Michajłow <kasper93@gmail.com> //
|
|
|
|
// //
|
|
|
|
// 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 //
|
|
|
|
// (at your option) any later version. //
|
|
|
|
// //
|
|
|
|
// 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/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////////
|
2014-05-18 11:52:39 -04:00
|
|
|
#ifndef INCLUDE_RTLSDRPLUGIN_H
|
|
|
|
#define INCLUDE_RTLSDRPLUGIN_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include "plugin/plugininterface.h"
|
|
|
|
|
2016-05-17 11:53:22 -04:00
|
|
|
class PluginAPI;
|
|
|
|
|
2015-09-30 23:05:46 -04:00
|
|
|
#define RTLSDR_DEVICE_TYPE_ID "sdrangel.samplesource.rtlsdr"
|
|
|
|
|
2015-08-25 20:03:20 -04:00
|
|
|
class RTLSDRPlugin : public QObject, public PluginInterface {
|
2014-05-18 11:52:39 -04:00
|
|
|
Q_OBJECT
|
|
|
|
Q_INTERFACES(PluginInterface)
|
2015-09-30 23:05:46 -04:00
|
|
|
Q_PLUGIN_METADATA(IID RTLSDR_DEVICE_TYPE_ID)
|
2014-05-18 11:52:39 -04:00
|
|
|
|
|
|
|
public:
|
|
|
|
explicit RTLSDRPlugin(QObject* parent = NULL);
|
|
|
|
|
|
|
|
const PluginDescriptor& getPluginDescriptor() const;
|
|
|
|
void initPlugin(PluginAPI* pluginAPI);
|
|
|
|
|
2019-09-16 18:34:11 -04:00
|
|
|
virtual void enumOriginDevices(QStringList& listedHwIds, OriginDevices& originDevices);
|
|
|
|
virtual SamplingDevices enumSampleSources(const OriginDevices& originDevices);
|
2020-10-05 13:23:13 -04:00
|
|
|
virtual DeviceGUI* createSampleSourcePluginInstanceGUI(
|
2017-10-29 19:02:28 -04:00
|
|
|
const QString& sourceId,
|
|
|
|
QWidget **widget,
|
|
|
|
DeviceUISet *deviceUISet);
|
2019-05-19 04:28:50 -04:00
|
|
|
virtual DeviceSampleSource* createSampleSourcePluginInstance(const QString& sourceId, DeviceAPI *deviceAPI);
|
2019-08-04 14:24:44 -04:00
|
|
|
virtual DeviceWebAPIAdapter* createDeviceWebAPIAdapter() const;
|
2014-05-18 11:52:39 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
static const PluginDescriptor m_pluginDescriptor;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDE_RTLSDRPLUGIN_H
|