2016-12-12 00:48:27 +01: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 06:39:30 +02:00
|
|
|
// (at your option) any later version. //
|
2016-12-12 00:48:27 +01: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-21 01:09:47 +01:00
|
|
|
#include <QIcon>
|
|
|
|
|
2020-10-04 06:16:15 +02:00
|
|
|
#include "channel/channelgui.h"
|
2016-12-12 00:48:27 +01:00
|
|
|
#include "dsp/channelmarker.h"
|
2018-02-03 10:33:02 +01:00
|
|
|
#include "util/movingaverage.h"
|
2017-09-16 22:23:31 +02:00
|
|
|
#include "util/messagequeue.h"
|
|
|
|
|
2016-12-12 00:48:27 +01:00
|
|
|
#include "ssbmod.h"
|
2017-10-19 00:26:03 +02:00
|
|
|
#include "ssbmodsettings.h"
|
2016-12-12 00:48:27 +01:00
|
|
|
|
|
|
|
class PluginAPI;
|
2017-11-01 00:00:03 +01:00
|
|
|
class DeviceUISet;
|
2017-11-08 22:54:58 +01:00
|
|
|
class BasebandSampleSource;
|
2016-12-14 00:14:52 +01:00
|
|
|
class SpectrumVis;
|
2016-12-12 00:48:27 +01:00
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class SSBModGUI;
|
|
|
|
}
|
|
|
|
|
2020-10-04 06:16:15 +02:00
|
|
|
class SSBModGUI : public ChannelGUI {
|
2016-12-12 00:48:27 +01:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2017-11-08 22:54:58 +01:00
|
|
|
static SSBModGUI* create(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSampleSource *channelTx);
|
2017-09-16 10:45:08 +02:00
|
|
|
virtual void destroy();
|
2016-12-12 00:48:27 +01:00
|
|
|
|
|
|
|
void resetToDefaults();
|
|
|
|
QByteArray serialize() const;
|
|
|
|
bool deserialize(const QByteArray& data);
|
2017-09-16 22:23:31 +02:00
|
|
|
virtual MessageQueue *getInputMessageQueue() { return &m_inputMessageQueue; }
|
2016-12-12 00:48:27 +01:00
|
|
|
|
2017-11-14 21:24:16 +01:00
|
|
|
public slots:
|
|
|
|
void channelMarkerChangedByCursor();
|
2016-12-12 00:48:27 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::SSBModGUI* ui;
|
|
|
|
PluginAPI* m_pluginAPI;
|
2017-11-01 00:00:03 +01:00
|
|
|
DeviceUISet* m_deviceUISet;
|
2016-12-12 00:48:27 +01:00
|
|
|
ChannelMarker m_channelMarker;
|
2017-10-19 00:26:03 +02:00
|
|
|
SSBModSettings m_settings;
|
2016-12-12 00:48:27 +01:00
|
|
|
bool m_doApplySettings;
|
2017-11-03 19:29:48 +01:00
|
|
|
int m_spectrumRate;
|
2016-12-12 00:48:27 +01:00
|
|
|
|
2016-12-14 00:14:52 +01:00
|
|
|
SpectrumVis* m_spectrumVis;
|
2016-12-12 00:48:27 +01:00
|
|
|
SSBMod* m_ssbMod;
|
2018-02-03 10:33:02 +01:00
|
|
|
MovingAverageUtil<double, double, 20> m_channelPowerDbAvg;
|
2016-12-12 00:48:27 +01:00
|
|
|
|
|
|
|
QString m_fileName;
|
|
|
|
quint32 m_recordLength;
|
|
|
|
int m_recordSampleRate;
|
|
|
|
int m_samplesCount;
|
2020-08-02 10:11:41 +02:00
|
|
|
int m_audioSampleRate;
|
|
|
|
int m_feedbackAudioSampleRate;
|
2016-12-12 00:48:27 +01:00
|
|
|
std::size_t m_tickCount;
|
|
|
|
bool m_enableNavTime;
|
2017-09-16 22:23:31 +02:00
|
|
|
MessageQueue m_inputMessageQueue;
|
|
|
|
|
2017-11-21 01:09:47 +01:00
|
|
|
QIcon m_iconDSBUSB;
|
|
|
|
QIcon m_iconDSBLSB;
|
|
|
|
|
2017-11-08 22:54:58 +01:00
|
|
|
explicit SSBModGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSampleSource *channelTx, QWidget* parent = 0);
|
2016-12-12 00:48:27 +01:00
|
|
|
virtual ~SSBModGUI();
|
|
|
|
|
2017-11-03 19:29:48 +01:00
|
|
|
bool blockApplySettings(bool block);
|
2017-10-21 12:17:11 +02:00
|
|
|
void applySettings(bool force = false);
|
2018-04-27 07:09:37 +02:00
|
|
|
void applyBandwidths(int spanLog2, bool force = false);
|
2017-08-05 19:08:33 +02:00
|
|
|
void displaySettings();
|
2019-11-17 11:09:07 +01:00
|
|
|
void displayStreamIndex();
|
2016-12-12 00:48:27 +01:00
|
|
|
void updateWithStreamData();
|
|
|
|
void updateWithStreamTime();
|
2017-10-20 21:19:42 +02:00
|
|
|
void channelMarkerUpdate();
|
2020-10-03 19:51:14 +02:00
|
|
|
bool handleMessage(const Message& message);
|
2016-12-12 00:48:27 +01:00
|
|
|
|
|
|
|
void leaveEvent(QEvent*);
|
|
|
|
void enterEvent(QEvent*);
|
2017-11-14 21:24:16 +01:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void handleSourceMessages();
|
|
|
|
void on_deltaFrequency_changed(qint64 value);
|
2017-11-21 01:09:47 +01:00
|
|
|
void on_flipSidebands_clicked(bool checked);
|
2017-11-14 21:24:16 +01: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);
|
2020-11-25 14:19:21 +01:00
|
|
|
void on_cmpPreGain_valueChanged(int value);
|
|
|
|
void on_cmpThreshold_valueChanged(int value);
|
2017-11-14 21:24:16 +01:00
|
|
|
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-31 02:38:50 +02:00
|
|
|
void on_feedbackEnable_toggled(bool checked);
|
|
|
|
void on_feedbackVolume_valueChanged(int value);
|
|
|
|
|
2017-11-14 21:24:16 +01:00
|
|
|
void onWidgetRolled(QWidget* widget, bool rollDown);
|
2018-04-15 10:54:22 +02:00
|
|
|
void onMenuDialogCalled(const QPoint& p);
|
2017-11-14 21:24:16 +01:00
|
|
|
|
|
|
|
void configureFileName();
|
2018-03-29 16:57:42 +02:00
|
|
|
void audioSelect();
|
2019-07-31 02:51:19 +02:00
|
|
|
void audioFeedbackSelect();
|
2017-11-14 21:24:16 +01:00
|
|
|
void tick();
|
2016-12-12 00:48:27 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* PLUGINS_CHANNELTX_MODSSB_SSBMODGUI_H_ */
|