2014-11-16 22:39:50 +00:00
|
|
|
#ifndef INCLUDE_WFMDEMODGUI_H
|
|
|
|
#define INCLUDE_WFMDEMODGUI_H
|
|
|
|
|
2017-09-26 00:22:08 +02:00
|
|
|
#include <plugin/plugininstancegui.h>
|
2014-11-16 22:39:50 +00:00
|
|
|
#include "gui/rollupwidget.h"
|
2015-08-25 00:59:14 +02:00
|
|
|
#include "dsp/channelmarker.h"
|
2017-09-16 22:23:31 +02:00
|
|
|
#include "util/messagequeue.h"
|
2014-11-16 22:39:50 +00:00
|
|
|
|
2017-10-08 02:52:32 +02:00
|
|
|
#include "wfmdemodsettings.h"
|
|
|
|
|
2014-11-16 22:39:50 +00:00
|
|
|
class PluginAPI;
|
2017-10-31 08:24:05 +01:00
|
|
|
class DeviceUISet;
|
2017-11-09 01:03:05 +01:00
|
|
|
class BasebandSampleSink;
|
2014-11-16 22:39:50 +00:00
|
|
|
class WFMDemod;
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class WFMDemodGUI;
|
|
|
|
}
|
|
|
|
|
2017-09-26 00:22:08 +02:00
|
|
|
class WFMDemodGUI : public RollupWidget, public PluginInstanceGUI {
|
2014-11-16 22:39:50 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2017-11-09 01:03:05 +01:00
|
|
|
static WFMDemodGUI* create(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel);
|
2017-09-16 10:45:08 +02:00
|
|
|
virtual void destroy();
|
2014-11-16 22:39:50 +00:00
|
|
|
|
|
|
|
void setName(const QString& name);
|
2015-06-07 03:30:28 +02:00
|
|
|
QString getName() const;
|
2015-09-29 03:35:14 +02:00
|
|
|
virtual qint64 getCenterFrequency() const;
|
|
|
|
virtual void setCenterFrequency(qint64 centerFrequency);
|
2014-11-16 22:39:50 +00:00
|
|
|
|
|
|
|
void resetToDefaults();
|
|
|
|
QByteArray serialize() const;
|
|
|
|
bool deserialize(const QByteArray& data);
|
2017-09-16 22:23:31 +02:00
|
|
|
virtual MessageQueue *getInputMessageQueue() { return &m_inputMessageQueue; }
|
2015-08-17 08:29:34 +02:00
|
|
|
virtual bool handleMessage(const Message& message);
|
2014-11-16 22:39:50 +00:00
|
|
|
|
2017-11-14 08:27:38 +01:00
|
|
|
public slots:
|
|
|
|
void channelMarkerChangedByCursor();
|
2017-11-14 22:58:35 +01:00
|
|
|
void channelMarkerHighlightedByCursor();
|
2014-11-16 22:39:50 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::WFMDemodGUI* ui;
|
|
|
|
PluginAPI* m_pluginAPI;
|
2017-10-31 08:24:05 +01:00
|
|
|
DeviceUISet* m_deviceUISet;
|
2015-08-25 00:59:14 +02:00
|
|
|
ChannelMarker m_channelMarker;
|
2017-10-08 02:52:32 +02:00
|
|
|
WFMDemodSettings m_settings;
|
2014-11-16 22:39:50 +00:00
|
|
|
bool m_basicSettingsShown;
|
2015-08-19 01:02:52 +02:00
|
|
|
bool m_doApplySettings;
|
2017-04-26 10:04:02 +02:00
|
|
|
bool m_audioMute;
|
|
|
|
bool m_squelchOpen;
|
2014-11-16 22:39:50 +00:00
|
|
|
|
|
|
|
WFMDemod* m_wfmDemod;
|
2017-09-16 22:23:31 +02:00
|
|
|
MessageQueue m_inputMessageQueue;
|
2015-05-14 11:08:23 +02:00
|
|
|
|
2017-11-09 01:03:05 +01:00
|
|
|
explicit WFMDemodGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel, QWidget* parent = 0);
|
2015-08-17 08:29:34 +02:00
|
|
|
virtual ~WFMDemodGUI();
|
2014-11-16 22:39:50 +00:00
|
|
|
|
2015-08-19 01:02:52 +02:00
|
|
|
void blockApplySettings(bool block);
|
2017-10-08 02:52:32 +02:00
|
|
|
void applySettings(bool force = false);
|
|
|
|
void displaySettings();
|
2015-05-14 11:08:23 +02:00
|
|
|
|
|
|
|
void leaveEvent(QEvent*);
|
|
|
|
void enterEvent(QEvent*);
|
2017-01-08 19:42:26 +01:00
|
|
|
|
2017-11-14 08:27:38 +01:00
|
|
|
private slots:
|
|
|
|
void on_deltaFrequency_changed(qint64 value);
|
|
|
|
void on_rfBW_currentIndexChanged(int index);
|
|
|
|
void on_afBW_valueChanged(int value);
|
|
|
|
void on_volume_valueChanged(int value);
|
|
|
|
void on_squelch_valueChanged(int value);
|
|
|
|
void on_audioMute_toggled(bool checked);
|
|
|
|
void onWidgetRolled(QWidget* widget, bool rollDown);
|
|
|
|
void onMenuDialogCalled(const QPoint& p);
|
2018-05-25 10:08:47 +02:00
|
|
|
void handleInputMessages();
|
2018-03-28 07:44:54 +02:00
|
|
|
void audioSelect();
|
2017-11-14 08:27:38 +01:00
|
|
|
void tick();
|
2014-11-16 22:39:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDE_WFMDEMODGUI_H
|