2016-12-11 18:48:27 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2016 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 //
|
2019-04-11 00:39:30 -04:00
|
|
|
// (at your option) any later version. //
|
2016-12-11 18:48:27 -05:00
|
|
|
// //
|
|
|
|
// 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/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef PLUGINS_CHANNELTX_MODSSB_SSBMODGUI_H_
|
|
|
|
#define PLUGINS_CHANNELTX_MODSSB_SSBMODGUI_H_
|
|
|
|
|
2017-11-20 19:09:47 -05:00
|
|
|
#include <QIcon>
|
|
|
|
|
2017-09-25 18:22:08 -04:00
|
|
|
#include <plugin/plugininstancegui.h>
|
2016-12-11 18:48:27 -05:00
|
|
|
#include "gui/rollupwidget.h"
|
|
|
|
#include "dsp/channelmarker.h"
|
2018-02-03 04:33:02 -05:00
|
|
|
#include "util/movingaverage.h"
|
2017-09-16 16:23:31 -04:00
|
|
|
#include "util/messagequeue.h"
|
|
|
|
|
2016-12-11 18:48:27 -05:00
|
|
|
#include "ssbmod.h"
|
2017-10-18 18:26:03 -04:00
|
|
|
#include "ssbmodsettings.h"
|
2016-12-11 18:48:27 -05:00
|
|
|
|
|
|
|
class PluginAPI;
|
2017-10-31 19:00:03 -04:00
|
|
|
class DeviceUISet;
|
2017-11-08 16:54:58 -05:00
|
|
|
class BasebandSampleSource;
|
2016-12-13 18:14:52 -05:00
|
|
|
class SpectrumVis;
|
2016-12-11 18:48:27 -05:00
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class SSBModGUI;
|
|
|
|
}
|
|
|
|
|
2017-09-25 18:22:08 -04:00
|
|
|
class SSBModGUI : public RollupWidget, public PluginInstanceGUI {
|
2016-12-11 18:48:27 -05:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2017-11-08 16:54:58 -05:00
|
|
|
static SSBModGUI* create(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSampleSource *channelTx);
|
2017-09-16 04:45:08 -04:00
|
|
|
virtual void destroy();
|
2016-12-11 18:48:27 -05: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-12-11 18:48:27 -05:00
|
|
|
virtual bool handleMessage(const Message& message);
|
|
|
|
|
2017-11-14 15:24:16 -05:00
|
|
|
public slots:
|
|
|
|
void channelMarkerChangedByCursor();
|
2016-12-11 18:48:27 -05:00
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::SSBModGUI* ui;
|
|
|
|
PluginAPI* m_pluginAPI;
|
2017-10-31 19:00:03 -04:00
|
|
|
DeviceUISet* m_deviceUISet;
|
2016-12-11 18:48:27 -05:00
|
|
|
ChannelMarker m_channelMarker;
|
2017-10-18 18:26:03 -04:00
|
|
|
SSBModSettings m_settings;
|
2016-12-11 18:48:27 -05:00
|
|
|
bool m_doApplySettings;
|
2017-11-03 14:29:48 -04:00
|
|
|
int m_spectrumRate;
|
2016-12-11 18:48:27 -05:00
|
|
|
|
2016-12-13 18:14:52 -05:00
|
|
|
SpectrumVis* m_spectrumVis;
|
2016-12-11 18:48:27 -05:00
|
|
|
SSBMod* m_ssbMod;
|
2018-02-03 04:33:02 -05:00
|
|
|
MovingAverageUtil<double, double, 20> m_channelPowerDbAvg;
|
2016-12-11 18:48:27 -05:00
|
|
|
|
|
|
|
QString m_fileName;
|
|
|
|
quint32 m_recordLength;
|
|
|
|
int m_recordSampleRate;
|
|
|
|
int m_samplesCount;
|
|
|
|
std::size_t m_tickCount;
|
|
|
|
bool m_enableNavTime;
|
2017-09-16 16:23:31 -04:00
|
|
|
MessageQueue m_inputMessageQueue;
|
|
|
|
|
2017-11-20 19:09:47 -05:00
|
|
|
QIcon m_iconDSBUSB;
|
|
|
|
QIcon m_iconDSBLSB;
|
|
|
|
|
2017-11-08 16:54:58 -05:00
|
|
|
explicit SSBModGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSampleSource *channelTx, QWidget* parent = 0);
|
2016-12-11 18:48:27 -05:00
|
|
|
virtual ~SSBModGUI();
|
|
|
|
|
2017-11-03 14:29:48 -04:00
|
|
|
bool blockApplySettings(bool block);
|
2017-10-21 06:17:11 -04:00
|
|
|
void applySettings(bool force = false);
|
2018-04-27 01:09:37 -04:00
|
|
|
void applyBandwidths(int spanLog2, bool force = false);
|
2017-08-05 13:08:33 -04:00
|
|
|
void displaySettings();
|
2016-12-11 18:48:27 -05:00
|
|
|
void updateWithStreamData();
|
|
|
|
void updateWithStreamTime();
|
2017-10-20 15:19:42 -04:00
|
|
|
void channelMarkerUpdate();
|
2016-12-11 18:48:27 -05:00
|
|
|
|
|
|
|
void leaveEvent(QEvent*);
|
|
|
|
void enterEvent(QEvent*);
|
2017-11-14 15:24:16 -05:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void handleSourceMessages();
|
|
|
|
void on_deltaFrequency_changed(qint64 value);
|
2017-11-20 19:09:47 -05:00
|
|
|
void on_flipSidebands_clicked(bool checked);
|
2017-11-14 15:24:16 -05:00
|
|
|
void on_dsb_toggled(bool checked);
|
|
|
|
void on_audioBinaural_toggled(bool checked);
|
|
|
|
void on_audioFlipChannels_toggled(bool checked);
|
|
|
|
void on_spanLog2_valueChanged(int value);
|
|
|
|
void on_BW_valueChanged(int value);
|
|
|
|
void on_lowCut_valueChanged(int value);
|
|
|
|
void on_volume_valueChanged(int value);
|
|
|
|
void on_audioMute_toggled(bool checked);
|
|
|
|
void on_tone_toggled(bool checked);
|
|
|
|
void on_toneFrequency_valueChanged(int value);
|
|
|
|
void on_mic_toggled(bool checked);
|
|
|
|
void on_agc_toggled(bool checked);
|
|
|
|
void on_play_toggled(bool checked);
|
|
|
|
void on_playLoop_toggled(bool checked);
|
|
|
|
void on_morseKeyer_toggled(bool checked);
|
|
|
|
|
|
|
|
void on_navTimeSlider_valueChanged(int value);
|
|
|
|
void on_showFileDialog_clicked(bool checked);
|
|
|
|
|
2019-07-30 20:38:50 -04:00
|
|
|
void on_feedbackEnable_toggled(bool checked);
|
|
|
|
void on_feedbackVolume_valueChanged(int value);
|
|
|
|
|
2017-11-14 15:24:16 -05:00
|
|
|
void onWidgetRolled(QWidget* widget, bool rollDown);
|
2018-04-15 04:54:22 -04:00
|
|
|
void onMenuDialogCalled(const QPoint& p);
|
2017-11-14 15:24:16 -05:00
|
|
|
|
|
|
|
void configureFileName();
|
2018-03-29 10:57:42 -04:00
|
|
|
void audioSelect();
|
2019-07-30 20:51:19 -04:00
|
|
|
void audioFeedbackSelect();
|
2017-11-14 15:24:16 -05:00
|
|
|
void tick();
|
2016-12-11 18:48:27 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* PLUGINS_CHANNELTX_MODSSB_SSBMODGUI_H_ */
|