2014-05-18 16:52:39 +01:00
|
|
|
#ifndef INCLUDE_RTLSDRPLUGIN_H
|
|
|
|
#define INCLUDE_RTLSDRPLUGIN_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include "plugin/plugininterface.h"
|
|
|
|
|
2016-05-17 17:53:22 +02:00
|
|
|
class PluginAPI;
|
|
|
|
|
2015-10-01 05:05:46 +02:00
|
|
|
#define RTLSDR_DEVICE_TYPE_ID "sdrangel.samplesource.rtlsdr"
|
|
|
|
|
2015-08-26 02:03:20 +02:00
|
|
|
class RTLSDRPlugin : public QObject, public PluginInterface {
|
2014-05-18 16:52:39 +01:00
|
|
|
Q_OBJECT
|
|
|
|
Q_INTERFACES(PluginInterface)
|
2015-10-01 05:05:46 +02:00
|
|
|
Q_PLUGIN_METADATA(IID RTLSDR_DEVICE_TYPE_ID)
|
2014-05-18 16:52:39 +01:00
|
|
|
|
|
|
|
public:
|
|
|
|
explicit RTLSDRPlugin(QObject* parent = NULL);
|
|
|
|
|
|
|
|
const PluginDescriptor& getPluginDescriptor() const;
|
|
|
|
void initPlugin(PluginAPI* pluginAPI);
|
|
|
|
|
2019-09-17 00:34:11 +02:00
|
|
|
virtual void enumOriginDevices(QStringList& listedHwIds, OriginDevices& originDevices);
|
|
|
|
virtual SamplingDevices enumSampleSources(const OriginDevices& originDevices);
|
2020-10-05 19:23:13 +02:00
|
|
|
virtual DeviceGUI* createSampleSourcePluginInstanceGUI(
|
2017-10-30 00:02:28 +01:00
|
|
|
const QString& sourceId,
|
|
|
|
QWidget **widget,
|
|
|
|
DeviceUISet *deviceUISet);
|
2019-05-19 10:28:50 +02:00
|
|
|
virtual DeviceSampleSource* createSampleSourcePluginInstance(const QString& sourceId, DeviceAPI *deviceAPI);
|
2019-08-04 20:24:44 +02:00
|
|
|
virtual DeviceWebAPIAdapter* createDeviceWebAPIAdapter() const;
|
2014-05-18 16:52:39 +01:00
|
|
|
|
2016-12-29 12:41:10 +01:00
|
|
|
static const QString m_hardwareID;
|
|
|
|
static const QString m_deviceTypeID;
|
2015-10-01 05:05:46 +02:00
|
|
|
|
2014-05-18 16:52:39 +01:00
|
|
|
private:
|
|
|
|
static const PluginDescriptor m_pluginDescriptor;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDE_RTLSDRPLUGIN_H
|