sdrangel/plugins/channelrx/demoddsd/dsddemodgui.h

133 lines
4.3 KiB
C
Raw Normal View History

///////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2016 F4EXB //
// 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
#include <plugin/plugininstancegui.h>
#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"
#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;
class DeviceUISet;
2016-04-07 07:05:53 -04:00
class ScopeVis;
class DSDDemod;
namespace Ui {
class DSDDemodGUI;
}
class DSDDemodGUI : public RollupWidget, public PluginInstanceGUI {
2016-04-07 07:05:53 -04:00
Q_OBJECT
public:
static DSDDemodGUI* create(PluginAPI* pluginAPI, DeviceUISet *deviceUISet);
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);
virtual MessageQueue *getInputMessageQueue() { return &m_inputMessageQueue; }
2016-04-07 07:05:53 -04:00
virtual bool handleMessage(const Message& message);
private slots:
void formatStatusText();
void channelMarkerChanged();
void on_deltaFrequency_changed(qint64 value);
2016-04-07 07:05:53 -04:00
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);
2016-04-07 07:05:53 -04:00
void on_fmDeviation_valueChanged(int value);
void on_squelchGate_valueChanged(int value);
void on_squelch_valueChanged(int value);
void on_audioMute_toggled(bool checked);
void on_symbolPLLLock_toggled(bool checked);
void on_udpOutput_toggled(bool checked);
2016-04-07 07:05:53 -04:00
void onWidgetRolled(QWidget* widget, bool rollDown);
void onMenuDialogCalled(const QPoint& p);
2016-04-07 07:05:53 -04:00
void tick();
private:
typedef enum
{
signalFormatNone,
signalFormatDMR,
signalFormatDStar,
2016-09-20 13:35:51 -04:00
signalFormatDPMR,
signalFormatYSF
} SignalFormat;
2016-04-07 07:05:53 -04:00
Ui::DSDDemodGUI* ui;
PluginAPI* m_pluginAPI;
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;
char m_formatStatusText[82+1]; //!< Fixed signal format dependent status text
SignalFormat m_signalFormat;
2016-04-07 07:05:53 -04:00
ScopeVis* m_scopeVis;
DSDDemod* m_dsdDemod;
bool m_enableCosineFiltering;
bool m_syncOrConstellation;
bool m_slot1On;
bool m_slot2On;
bool m_tdmaStereo;
2016-04-07 07:05:53 -04:00
bool m_audioMute;
bool m_squelchOpen;
uint32_t m_tickCount;
2016-04-07 07:05:53 -04:00
float m_myLatitude;
float m_myLongitude;
MessageQueue m_inputMessageQueue;
explicit DSDDemodGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, QWidget* parent = 0);
2016-04-07 07:05:53 -04:00
virtual ~DSDDemodGUI();
void blockApplySettings(bool block);
void applySettings(bool force = false);
2017-10-03 17:42:56 -04:00
void displaySettings();
void updateMyPosition();
void displayUDPAddress();
2016-04-07 07:05:53 -04:00
void leaveEvent(QEvent*);
void enterEvent(QEvent*);
};
#endif // INCLUDE_DSDDEMODGUI_H