2015-05-11 20:53:35 -04:00
|
|
|
#ifndef INCLUDE_AMDEMODGUI_H
|
|
|
|
#define INCLUDE_AMDEMODGUI_H
|
|
|
|
|
2018-05-13 16:30:50 -04:00
|
|
|
#include <QIcon>
|
|
|
|
|
|
|
|
#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;
|
2017-10-31 03:24:05 -04:00
|
|
|
class DeviceUISet;
|
2015-05-11 20:53:35 -04:00
|
|
|
|
|
|
|
class AMDemod;
|
2017-11-08 19:03:05 -05:00
|
|
|
class BasebandSampleSink;
|
2015-05-11 20:53:35 -04:00
|
|
|
|
|
|
|
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:
|
2017-11-08 19:03:05 -05:00
|
|
|
static AMDemodGUI* create(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel);
|
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
|
|
|
|
2017-11-13 18:35:25 -05:00
|
|
|
public slots:
|
|
|
|
void channelMarkerChangedByCursor();
|
2017-11-14 16:58:35 -05:00
|
|
|
void channelMarkerHighlightedByCursor();
|
2015-05-11 20:53:35 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::AMDemodGUI* ui;
|
|
|
|
PluginAPI* m_pluginAPI;
|
2017-10-31 03:24:05 -04:00
|
|
|
DeviceUISet* m_deviceUISet;
|
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
|
|
|
|
|
|
|
AMDemod* m_amDemod;
|
2016-03-26 23:44:35 -04:00
|
|
|
bool m_squelchOpen;
|
2018-05-13 16:30:50 -04:00
|
|
|
bool m_samUSB;
|
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
|
|
|
|
2018-05-13 16:30:50 -04:00
|
|
|
QIcon m_iconDSBUSB;
|
|
|
|
QIcon m_iconDSBLSB;
|
|
|
|
|
2017-11-08 19:03:05 -05:00
|
|
|
explicit AMDemodGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel, QWidget* parent = 0);
|
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();
|
2019-05-20 10:31:15 -04:00
|
|
|
void displayStreamIndex();
|
2015-05-11 20:53:35 -04:00
|
|
|
|
|
|
|
void leaveEvent(QEvent*);
|
|
|
|
void enterEvent(QEvent*);
|
2017-11-13 18:35:25 -05:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void on_deltaFrequency_changed(qint64 value);
|
2018-05-13 11:27:24 -04:00
|
|
|
void on_pll_toggled(bool checked);
|
2018-05-13 16:30:50 -04:00
|
|
|
void on_ssb_toggled(bool checked);
|
2017-11-13 18:35:25 -05:00
|
|
|
void on_bandpassEnable_toggled(bool checked);
|
|
|
|
void on_rfBW_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-03-22 01:34:51 -04:00
|
|
|
void handleInputMessages();
|
2018-03-26 12:41:09 -04:00
|
|
|
void audioSelect();
|
2018-05-13 16:30:50 -04:00
|
|
|
void samSSBSelect();
|
2017-11-13 18:35:25 -05:00
|
|
|
void tick();
|
2015-05-11 20:53:35 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDE_AMDEMODGUI_H
|