mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-04 16:01:14 -05:00
61 lines
1.4 KiB
C++
61 lines
1.4 KiB
C++
#ifndef INCLUDE_FCDGUI_H
|
|
#define INCLUDE_FCDGUI_H
|
|
|
|
#include <QTimer>
|
|
|
|
#include "fcdproplusinput.h"
|
|
#include "plugin/plugingui.h"
|
|
|
|
class PluginAPI;
|
|
|
|
namespace Ui {
|
|
class FCDProPlusGui;
|
|
}
|
|
|
|
class FCDProPlusGui : public QWidget, public PluginGUI {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit FCDProPlusGui(PluginAPI* pluginAPI, QWidget* parent = NULL);
|
|
virtual ~FCDProPlusGui();
|
|
void destroy();
|
|
|
|
void setName(const QString& name);
|
|
QString getName() const;
|
|
|
|
void resetToDefaults();
|
|
virtual qint64 getCenterFrequency() const;
|
|
virtual void setCenterFrequency(qint64 centerFrequency);
|
|
QByteArray serialize() const;
|
|
bool deserialize(const QByteArray& data);
|
|
|
|
virtual bool handleMessage(const Message& message);
|
|
|
|
private:
|
|
Ui::FCDProPlusGui* ui;
|
|
|
|
PluginAPI* m_pluginAPI;
|
|
FCDProPlusSettings m_settings;
|
|
QTimer m_updateTimer;
|
|
std::vector<int> m_gains;
|
|
SampleSource* m_sampleSource;
|
|
|
|
void displaySettings();
|
|
void sendSettings();
|
|
|
|
private slots:
|
|
void on_centerFrequency_changed(quint64 value);
|
|
void on_dcOffset_toggled(bool checked);
|
|
void on_iqImbalance_toggled(bool checked);
|
|
void on_checkBoxG_stateChanged(int state);
|
|
void on_checkBoxB_stateChanged(int state);
|
|
void on_mixGain_stateChanged(int state);
|
|
void on_ifGain_valueChanged(int value);
|
|
void on_filterRF_currentIndexChanged(int index);
|
|
void on_filterIF_currentIndexChanged(int index);
|
|
void on_ppm_valueChanged(int value);
|
|
void updateHardware();
|
|
};
|
|
|
|
#endif // INCLUDE_FCDGUI_H
|