2015-05-11 20:53:35 -04:00
|
|
|
#ifndef INCLUDE_AMDEMODGUI_H
|
|
|
|
#define INCLUDE_AMDEMODGUI_H
|
|
|
|
|
2017-09-25 18:22:08 -04:00
|
|
|
#include <plugin/plugininstancegui.h>
|
2015-05-11 20:53:35 -04:00
|
|
|
#include "gui/rollupwidget.h"
|
2015-08-24 17:39:43 -04:00
|
|
|
#include "dsp/channelmarker.h"
|
2015-10-04 05:22:37 -04:00
|
|
|
#include "dsp/movingaverage.h"
|
2017-09-16 16:23:31 -04:00
|
|
|
#include "util/messagequeue.h"
|
2017-09-26 17:53:35 -04:00
|
|
|
#include "amdemodsettings.h"
|
2015-05-11 20:53:35 -04:00
|
|
|
|
|
|
|
class PluginAPI;
|
2016-10-10 19:17:55 -04:00
|
|
|
class DeviceSourceAPI;
|
2015-05-11 20:53:35 -04:00
|
|
|
|
2016-10-03 09:55:16 -04:00
|
|
|
class ThreadedBasebandSampleSink;
|
2016-10-02 15:52:39 -04:00
|
|
|
class DownChannelizer;
|
2015-05-11 20:53:35 -04:00
|
|
|
class AMDemod;
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class AMDemodGUI;
|
|
|
|
}
|
|
|
|
|
2017-09-25 18:22:08 -04:00
|
|
|
class AMDemodGUI : public RollupWidget, public PluginInstanceGUI {
|
2015-05-11 20:53:35 -04:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2016-10-10 19:17:55 -04:00
|
|
|
static AMDemodGUI* create(PluginAPI* pluginAPI, DeviceSourceAPI *deviceAPI);
|
2017-09-16 04:45:08 -04:00
|
|
|
virtual void destroy();
|
2015-05-11 20:53:35 -04:00
|
|
|
|
|
|
|
void setName(const QString& name);
|
2015-06-06 21:30:28 -04:00
|
|
|
QString getName() const;
|
2015-09-28 21:35:14 -04:00
|
|
|
virtual qint64 getCenterFrequency() const;
|
|
|
|
virtual void setCenterFrequency(qint64 centerFrequency);
|
2015-05-11 20:53:35 -04:00
|
|
|
|
|
|
|
void resetToDefaults();
|
|
|
|
QByteArray serialize() const;
|
|
|
|
bool deserialize(const QByteArray& data);
|
2017-09-16 16:23:31 -04:00
|
|
|
virtual MessageQueue *getInputMessageQueue() { return &m_inputMessageQueue; }
|
2015-08-17 02:29:34 -04:00
|
|
|
virtual bool handleMessage(const Message& message);
|
2015-05-11 20:53:35 -04:00
|
|
|
|
2016-05-16 13:37:53 -04:00
|
|
|
static const QString m_channelID;
|
|
|
|
|
2015-05-11 20:53:35 -04:00
|
|
|
private slots:
|
2017-08-25 23:32:01 -04:00
|
|
|
void channelMarkerChanged();
|
2017-05-17 17:34:14 -04:00
|
|
|
void on_deltaFrequency_changed(qint64 value);
|
2017-05-12 13:21:52 -04:00
|
|
|
void on_bandpassEnable_toggled(bool checked);
|
2015-05-11 20:53:35 -04:00
|
|
|
void on_rfBW_valueChanged(int value);
|
|
|
|
void on_volume_valueChanged(int value);
|
|
|
|
void on_squelch_valueChanged(int value);
|
2015-12-26 12:23:55 -05:00
|
|
|
void on_audioMute_toggled(bool checked);
|
2017-08-25 23:32:01 -04:00
|
|
|
void on_copyAudioToUDP_toggled(bool copy);
|
2015-05-11 20:53:35 -04:00
|
|
|
void onWidgetRolled(QWidget* widget, bool rollDown);
|
2017-08-25 23:32:01 -04:00
|
|
|
void onMenuDialogCalled(const QPoint& p);
|
2015-10-04 05:22:37 -04:00
|
|
|
void tick();
|
2015-05-11 20:53:35 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::AMDemodGUI* ui;
|
|
|
|
PluginAPI* m_pluginAPI;
|
2016-10-10 19:17:55 -04:00
|
|
|
DeviceSourceAPI* m_deviceAPI;
|
2015-08-24 17:39:43 -04:00
|
|
|
ChannelMarker m_channelMarker;
|
2017-09-26 17:53:35 -04:00
|
|
|
AMDemodSettings m_settings;
|
2015-08-18 19:02:52 -04:00
|
|
|
bool m_doApplySettings;
|
2015-05-11 20:53:35 -04:00
|
|
|
|
2017-09-27 18:24:03 -04:00
|
|
|
// ThreadedBasebandSampleSink* m_threadedChannelizer;
|
|
|
|
// DownChannelizer* m_channelizer;
|
2015-05-11 20:53:35 -04:00
|
|
|
AMDemod* m_amDemod;
|
2016-03-26 23:44:35 -04:00
|
|
|
bool m_squelchOpen;
|
2017-08-17 11:21:38 -04:00
|
|
|
uint32_t m_tickCount;
|
2017-09-16 16:23:31 -04:00
|
|
|
MessageQueue m_inputMessageQueue;
|
2015-05-11 20:53:35 -04:00
|
|
|
|
2016-10-10 19:17:55 -04:00
|
|
|
explicit AMDemodGUI(PluginAPI* pluginAPI, DeviceSourceAPI *deviceAPI, QWidget* parent = NULL);
|
2015-08-18 19:02:52 -04:00
|
|
|
virtual ~AMDemodGUI();
|
2015-05-11 20:53:35 -04:00
|
|
|
|
2015-08-18 19:02:52 -04:00
|
|
|
void blockApplySettings(bool block);
|
2017-08-25 23:32:01 -04:00
|
|
|
void applySettings(bool force = false);
|
2017-09-26 17:53:35 -04:00
|
|
|
void displaySettings();
|
2017-08-25 23:32:01 -04:00
|
|
|
void displayUDPAddress();
|
2015-05-11 20:53:35 -04:00
|
|
|
|
|
|
|
void leaveEvent(QEvent*);
|
|
|
|
void enterEvent(QEvent*);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDE_AMDEMODGUI_H
|