1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-11-10 08:10:25 -05:00

89 lines
3.2 KiB
C
Raw Normal View History

2020-02-08 18:21:38 +01:00
///////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2019-2020 Edouard Griffiths, F4EXB //
// //
// 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 //
// (at your option) any later version. //
// //
// 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/>. //
///////////////////////////////////////////////////////////////////////////////////
2015-01-11 00:12:58 +00:00
#ifndef INCLUDE_LoRaDEMODGUI_H
#define INCLUDE_LoRaDEMODGUI_H
#include <plugin/plugininstancegui.h>
2015-01-11 00:12:58 +00:00
#include "gui/rollupwidget.h"
#include "dsp/channelmarker.h"
#include "util/messagequeue.h"
2015-01-11 00:12:58 +00:00
2017-10-08 00:28:42 +02:00
#include "lorademodsettings.h"
2015-02-20 08:45:57 +00:00
2015-01-11 00:12:58 +00:00
class PluginAPI;
class DeviceUISet;
2015-01-11 00:12:58 +00:00
class LoRaDemod;
class SpectrumVis;
class BasebandSampleSink;
2015-01-11 00:12:58 +00:00
namespace Ui {
class LoRaDemodGUI;
}
class LoRaDemodGUI : public RollupWidget, public PluginInstanceGUI {
2015-01-11 00:12:58 +00:00
Q_OBJECT
public:
static LoRaDemodGUI* create(PluginAPI* pluginAPI, DeviceUISet *deviceAPI, BasebandSampleSink *rxChannel);
virtual void destroy();
2015-01-11 00:12:58 +00:00
void setName(const QString& name);
QString getName() const;
virtual qint64 getCenterFrequency() const;
virtual void setCenterFrequency(qint64 centerFrequency);
2015-01-11 00:12:58 +00:00
void resetToDefaults();
QByteArray serialize() const;
bool deserialize(const QByteArray& data);
virtual MessageQueue *getInputMessageQueue() { return &m_inputMessageQueue; }
2015-08-17 08:29:34 +02:00
virtual bool handleMessage(const Message& message);
2015-01-11 00:12:58 +00:00
private slots:
2020-02-08 18:21:38 +01:00
void channelMarkerChangedByCursor();
void on_deltaFrequency_changed(qint64 value);
2015-01-11 00:12:58 +00:00
void on_BW_valueChanged(int value);
2015-01-12 14:25:16 +00:00
void on_Spread_valueChanged(int value);
2020-02-08 18:21:38 +01:00
void on_deBits_valueChanged(int value);
2015-01-11 00:12:58 +00:00
void onWidgetRolled(QWidget* widget, bool rollDown);
2020-02-08 18:21:38 +01:00
void channelMarkerHighlightedByCursor();
void handleInputMessages();
2015-01-11 00:12:58 +00:00
private:
Ui::LoRaDemodGUI* ui;
PluginAPI* m_pluginAPI;
DeviceUISet* m_deviceUISet;
ChannelMarker m_channelMarker;
2017-10-08 00:28:42 +02:00
LoRaDemodSettings m_settings;
2020-02-08 18:21:38 +01:00
int m_basebandSampleRate;
bool m_doApplySettings;
2015-01-11 00:12:58 +00:00
LoRaDemod* m_LoRaDemod;
SpectrumVis* m_spectrumVis;
MessageQueue m_inputMessageQueue;
2015-01-11 00:12:58 +00:00
explicit LoRaDemodGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel, QWidget* parent = 0);
virtual ~LoRaDemodGUI();
2015-01-11 00:12:58 +00:00
void blockApplySettings(bool block);
2017-10-08 00:28:42 +02:00
void applySettings(bool force = false);
void displaySettings();
2020-02-08 18:21:38 +01:00
void setBandwidths();
2015-01-11 00:12:58 +00:00
};
#endif // INCLUDE_LoRaDEMODGUI_H