2016-04-08 12:14:50 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
2016-04-21 21:53:16 -04:00
|
|
|
// Copyright (C) 2016 F4EXB //
|
2016-04-08 12:14:50 -04:00
|
|
|
// written by Edouard Griffiths //
|
|
|
|
// //
|
|
|
|
// This program is free software; you can redistribute it and/or modify //
|
|
|
|
// it under the terms of the GNU General Public License as published by //
|
|
|
|
// the Free Software Foundation as version 3 of the License, or //
|
|
|
|
// //
|
|
|
|
// This program is distributed in the hope that it will be useful, //
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
|
|
|
|
// GNU General Public License V3 for more details. //
|
|
|
|
// //
|
|
|
|
// You should have received a copy of the GNU General Public License //
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2016-04-07 07:05:53 -04:00
|
|
|
#ifndef INCLUDE_DSDDEMODGUI_H
|
|
|
|
#define INCLUDE_DSDDEMODGUI_H
|
|
|
|
|
2017-09-25 18:22:08 -04:00
|
|
|
#include <plugin/plugininstancegui.h>
|
2017-08-23 17:44:12 -04:00
|
|
|
#include <QMenu>
|
|
|
|
|
2016-04-07 07:05:53 -04:00
|
|
|
#include "gui/rollupwidget.h"
|
|
|
|
#include "dsp/dsptypes.h"
|
|
|
|
#include "dsp/channelmarker.h"
|
|
|
|
#include "dsp/movingaverage.h"
|
2017-09-16 16:23:31 -04:00
|
|
|
#include "util/messagequeue.h"
|
2016-04-07 07:05:53 -04:00
|
|
|
|
2017-10-03 17:42:56 -04:00
|
|
|
#include "dsddemodsettings.h"
|
|
|
|
|
2016-04-07 07:05:53 -04:00
|
|
|
class PluginAPI;
|
2017-10-31 03:24:05 -04:00
|
|
|
class DeviceUISet;
|
2017-11-08 19:03:05 -05:00
|
|
|
class BasebandSampleSink;
|
2016-04-07 07:05:53 -04:00
|
|
|
class ScopeVis;
|
|
|
|
class DSDDemod;
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class DSDDemodGUI;
|
|
|
|
}
|
|
|
|
|
2017-09-25 18:22:08 -04:00
|
|
|
class DSDDemodGUI : public RollupWidget, public PluginInstanceGUI {
|
2016-04-07 07:05:53 -04:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2017-11-08 19:03:05 -05:00
|
|
|
static DSDDemodGUI* create(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel);
|
2017-09-16 04:45:08 -04:00
|
|
|
virtual void destroy();
|
2016-04-07 07:05:53 -04:00
|
|
|
|
|
|
|
void setName(const QString& name);
|
|
|
|
QString getName() const;
|
|
|
|
virtual qint64 getCenterFrequency() const;
|
|
|
|
virtual void setCenterFrequency(qint64 centerFrequency);
|
|
|
|
|
|
|
|
void resetToDefaults();
|
|
|
|
QByteArray serialize() const;
|
|
|
|
bool deserialize(const QByteArray& data);
|
2017-09-16 16:23:31 -04:00
|
|
|
virtual MessageQueue *getInputMessageQueue() { return &m_inputMessageQueue; }
|
2016-04-07 07:05:53 -04:00
|
|
|
virtual bool handleMessage(const Message& message);
|
|
|
|
|
2017-11-13 19:34:51 -05:00
|
|
|
public slots:
|
|
|
|
void channelMarkerChangedByCursor();
|
2017-11-14 16:58:35 -05:00
|
|
|
void channelMarkerHighlightedByCursor();
|
2016-04-07 07:05:53 -04:00
|
|
|
|
|
|
|
private:
|
2016-04-23 00:27:28 -04:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
signalFormatNone,
|
|
|
|
signalFormatDMR,
|
2016-08-07 19:04:56 -04:00
|
|
|
signalFormatDStar,
|
2016-09-20 13:35:51 -04:00
|
|
|
signalFormatDPMR,
|
|
|
|
signalFormatYSF
|
2016-04-23 00:27:28 -04:00
|
|
|
} SignalFormat;
|
|
|
|
|
2016-04-07 07:05:53 -04:00
|
|
|
Ui::DSDDemodGUI* ui;
|
|
|
|
PluginAPI* m_pluginAPI;
|
2017-10-31 03:24:05 -04:00
|
|
|
DeviceUISet* m_deviceUISet;
|
2016-04-07 07:05:53 -04:00
|
|
|
ChannelMarker m_channelMarker;
|
2017-10-03 17:42:56 -04:00
|
|
|
DSDDemodSettings m_settings;
|
2016-04-07 07:05:53 -04:00
|
|
|
bool m_doApplySettings;
|
2016-09-27 13:56:42 -04:00
|
|
|
char m_formatStatusText[82+1]; //!< Fixed signal format dependent status text
|
2016-04-23 00:27:28 -04:00
|
|
|
SignalFormat m_signalFormat;
|
2016-04-07 07:05:53 -04:00
|
|
|
|
|
|
|
ScopeVis* m_scopeVis;
|
|
|
|
|
|
|
|
DSDDemod* m_dsdDemod;
|
2016-08-18 13:38:39 -04:00
|
|
|
bool m_enableCosineFiltering;
|
2016-08-24 19:06:42 -04:00
|
|
|
bool m_syncOrConstellation;
|
2016-08-30 19:18:32 -04:00
|
|
|
bool m_slot1On;
|
|
|
|
bool m_slot2On;
|
2016-09-06 18:16:08 -04:00
|
|
|
bool m_tdmaStereo;
|
2016-04-07 07:05:53 -04:00
|
|
|
bool m_audioMute;
|
|
|
|
bool m_squelchOpen;
|
2017-08-17 11:48:47 -04:00
|
|
|
uint32_t m_tickCount;
|
2016-04-07 07:05:53 -04:00
|
|
|
|
2016-09-28 11:58:29 -04:00
|
|
|
float m_myLatitude;
|
|
|
|
float m_myLongitude;
|
|
|
|
|
2017-09-16 16:23:31 -04:00
|
|
|
MessageQueue m_inputMessageQueue;
|
|
|
|
|
2017-11-08 19:03:05 -05:00
|
|
|
explicit DSDDemodGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel, QWidget* parent = 0);
|
2016-04-07 07:05:53 -04:00
|
|
|
virtual ~DSDDemodGUI();
|
|
|
|
|
|
|
|
void blockApplySettings(bool block);
|
2017-08-24 02:46:14 -04:00
|
|
|
void applySettings(bool force = false);
|
2017-10-03 17:42:56 -04:00
|
|
|
void displaySettings();
|
2016-09-28 11:58:29 -04:00
|
|
|
void updateMyPosition();
|
2017-08-25 03:32:17 -04:00
|
|
|
void displayUDPAddress();
|
2016-04-07 07:05:53 -04:00
|
|
|
|
|
|
|
void leaveEvent(QEvent*);
|
|
|
|
void enterEvent(QEvent*);
|
2017-11-13 19:34:51 -05:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void formatStatusText();
|
|
|
|
void on_deltaFrequency_changed(qint64 value);
|
|
|
|
void on_rfBW_valueChanged(int index);
|
|
|
|
void on_demodGain_valueChanged(int value);
|
|
|
|
void on_volume_valueChanged(int value);
|
|
|
|
void on_baudRate_currentIndexChanged(int index);
|
|
|
|
void on_enableCosineFiltering_toggled(bool enable);
|
|
|
|
void on_syncOrConstellation_toggled(bool checked);
|
|
|
|
void on_slot1On_toggled(bool checked);
|
|
|
|
void on_slot2On_toggled(bool checked);
|
|
|
|
void on_tdmaStereoSplit_toggled(bool checked);
|
|
|
|
void on_fmDeviation_valueChanged(int value);
|
|
|
|
void on_squelchGate_valueChanged(int value);
|
|
|
|
void on_squelch_valueChanged(int value);
|
2017-12-26 14:29:23 -05:00
|
|
|
void on_highPassFilter_toggled(bool checked);
|
2017-11-13 19:34:51 -05:00
|
|
|
void on_audioMute_toggled(bool checked);
|
|
|
|
void on_symbolPLLLock_toggled(bool checked);
|
|
|
|
void on_udpOutput_toggled(bool checked);
|
2018-03-06 19:39:02 -05:00
|
|
|
void on_useRTP_toggled(bool checked);
|
2017-11-13 19:34:51 -05:00
|
|
|
void onWidgetRolled(QWidget* widget, bool rollDown);
|
|
|
|
void onMenuDialogCalled(const QPoint& p);
|
|
|
|
void tick();
|
2016-04-07 07:05:53 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDE_DSDDEMODGUI_H
|