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);
|
|
|
|
|
2016-10-13 16:23:43 -04:00
|
|
|
virtual SamplingDevices enumSampleSources();
|
2017-09-14 02:49:31 -04:00
|
|
|
virtual PluginInstanceUI* createSampleSourcePluginInstanceGUI(const QString& sourceId, QWidget **widget, DeviceSourceAPI *deviceAPI);
|
2017-09-14 07:34:32 -04:00
|
|
|
virtual DeviceSampleSource* createSampleSourcePluginInstanceInput(const QString& sourceId, DeviceSourceAPI *deviceAPI);
|
2014-05-18 11:52:39 -04:00
|
|
|
|
2016-12-29 06:41:10 -05:00
|
|
|
static const QString m_hardwareID;
|
|
|
|
static const QString m_deviceTypeID;
|
2015-09-30 23:05:46 -04:00
|
|
|
|
2014-05-18 11:52:39 -04:00
|
|
|
private:
|
|
|
|
static const PluginDescriptor m_pluginDescriptor;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDE_RTLSDRPLUGIN_H
|