2015-09-02 21:57:54 -04:00
|
|
|
#ifndef INCLUDE_FCDGUI_H
|
|
|
|
#define INCLUDE_FCDGUI_H
|
|
|
|
|
|
|
|
#include <QTimer>
|
2015-09-03 22:10:38 -04:00
|
|
|
|
|
|
|
#include "fcdproplusinput.h"
|
2015-09-02 21:57:54 -04:00
|
|
|
#include "plugin/plugingui.h"
|
|
|
|
|
|
|
|
class PluginAPI;
|
|
|
|
|
|
|
|
namespace Ui {
|
2015-09-03 22:10:38 -04:00
|
|
|
class FCDProPlusGui;
|
2015-09-02 21:57:54 -04:00
|
|
|
}
|
|
|
|
|
2015-09-03 22:10:38 -04:00
|
|
|
class FCDProPlusGui : public QWidget, public PluginGUI {
|
2015-09-02 21:57:54 -04:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2015-09-03 22:10:38 -04:00
|
|
|
explicit FCDProPlusGui(PluginAPI* pluginAPI, QWidget* parent = NULL);
|
|
|
|
virtual ~FCDProPlusGui();
|
2015-09-02 21:57:54 -04:00
|
|
|
void destroy();
|
|
|
|
|
|
|
|
void setName(const QString& name);
|
|
|
|
QString getName() const;
|
|
|
|
|
|
|
|
void resetToDefaults();
|
2015-09-03 02:50:07 -04:00
|
|
|
qint64 getCenterFrequency() const;
|
2015-09-02 21:57:54 -04:00
|
|
|
QByteArray serialize() const;
|
|
|
|
bool deserialize(const QByteArray& data);
|
|
|
|
|
|
|
|
virtual bool handleMessage(const Message& message);
|
|
|
|
|
|
|
|
private:
|
2015-09-03 22:10:38 -04:00
|
|
|
Ui::FCDProPlusGui* ui;
|
2015-09-02 21:57:54 -04:00
|
|
|
|
|
|
|
PluginAPI* m_pluginAPI;
|
2015-09-03 22:10:38 -04:00
|
|
|
FCDProPlusInput::Settings m_settings;
|
2015-09-02 21:57:54 -04:00
|
|
|
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_checkBoxG_stateChanged(int state);
|
|
|
|
void on_checkBoxB_stateChanged(int state);
|
2015-09-05 05:46:56 -04:00
|
|
|
void on_mixGain_stateChanged(int state);
|
|
|
|
void on_ifGain_valueChanged(int value);
|
|
|
|
void on_filterRF_currentIndexChanged(int index);
|
|
|
|
void on_filterIF_currentIndexChanged(int index);
|
2015-09-05 19:34:20 -04:00
|
|
|
void on_ppm_valueChanged(int value);
|
2015-09-02 21:57:54 -04:00
|
|
|
void updateHardware();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDE_FCDGUI_H
|