2017-02-23 02:18:56 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2017 F4HKW //
|
|
|
|
// for F4EXB / SDRAngel //
|
|
|
|
// //
|
|
|
|
// 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. //
|
2017-02-23 02:18:56 -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 INCLUDE_ATVDEMODGUI_H
|
|
|
|
#define INCLUDE_ATVDEMODGUI_H
|
|
|
|
|
2017-09-25 18:22:08 -04:00
|
|
|
#include <plugin/plugininstancegui.h>
|
2017-02-23 02:18:56 -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"
|
2017-02-23 02:18:56 -05:00
|
|
|
|
|
|
|
class PluginAPI;
|
2017-10-31 03:24:05 -04:00
|
|
|
class DeviceUISet;
|
2017-11-08 19:03:05 -05:00
|
|
|
class BasebandSampleSink;
|
2017-02-23 02:18:56 -05:00
|
|
|
class ATVDemod;
|
2018-08-12 11:18:58 -04:00
|
|
|
class ScopeVis;
|
2017-02-23 02:18:56 -05:00
|
|
|
|
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class ATVDemodGUI;
|
|
|
|
}
|
|
|
|
|
2017-09-25 18:22:08 -04:00
|
|
|
class ATVDemodGUI : public RollupWidget, public PluginInstanceGUI
|
2017-02-23 02:18:56 -05:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2017-11-08 19:03:05 -05:00
|
|
|
static ATVDemodGUI* create(PluginAPI* objPluginAPI, DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel);
|
2017-09-16 04:45:08 -04:00
|
|
|
virtual void destroy();
|
2017-02-23 02:18:56 -05:00
|
|
|
|
|
|
|
void setName(const QString& strName);
|
|
|
|
QString getName() const;
|
|
|
|
virtual qint64 getCenterFrequency() const;
|
|
|
|
virtual void setCenterFrequency(qint64 intCenterFrequency);
|
|
|
|
|
|
|
|
void resetToDefaults();
|
|
|
|
QByteArray serialize() const;
|
|
|
|
bool deserialize(const QByteArray& arrData);
|
2017-09-16 16:23:31 -04:00
|
|
|
virtual MessageQueue *getInputMessageQueue() { return &m_inputMessageQueue; }
|
2017-02-23 02:18:56 -05:00
|
|
|
virtual bool handleMessage(const Message& objMessage);
|
|
|
|
|
2017-11-13 19:06:19 -05:00
|
|
|
public slots:
|
|
|
|
void channelMarkerChangedByCursor();
|
2017-11-14 16:58:35 -05:00
|
|
|
void channelMarkerHighlightedByCursor();
|
2017-02-23 02:18:56 -05:00
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::ATVDemodGUI* ui;
|
2017-10-01 03:06:55 -04:00
|
|
|
PluginAPI* m_pluginAPI;
|
2017-10-31 03:24:05 -04:00
|
|
|
DeviceUISet* m_deviceUISet;
|
2017-10-01 03:06:55 -04:00
|
|
|
ChannelMarker m_channelMarker;
|
|
|
|
ATVDemod* m_atvDemod;
|
2017-02-23 02:18:56 -05:00
|
|
|
|
|
|
|
bool m_blnDoApplySettings;
|
|
|
|
|
2018-02-03 04:33:02 -05:00
|
|
|
MovingAverageUtil<double, double, 4> m_objMagSqAverage;
|
2017-03-16 13:56:20 -04:00
|
|
|
int m_intTickCount;
|
|
|
|
|
2018-08-12 11:18:58 -04:00
|
|
|
ScopeVis* m_scopeVis;
|
2017-03-20 06:57:52 -04:00
|
|
|
|
2017-03-20 17:37:11 -04:00
|
|
|
float m_fltLineTimeMultiplier;
|
2017-03-26 17:47:21 -04:00
|
|
|
float m_fltTopTimeMultiplier;
|
2017-03-21 10:10:01 -04:00
|
|
|
int m_rfSliderDivisor;
|
2017-11-06 17:04:23 -05:00
|
|
|
int m_inputSampleRate;
|
2017-09-16 16:23:31 -04:00
|
|
|
MessageQueue m_inputMessageQueue;
|
2017-03-20 17:37:11 -04:00
|
|
|
|
2017-11-08 19:03:05 -05:00
|
|
|
explicit ATVDemodGUI(PluginAPI* objPluginAPI, DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel, QWidget* objParent = 0);
|
2017-02-23 02:18:56 -05:00
|
|
|
virtual ~ATVDemodGUI();
|
|
|
|
|
|
|
|
void blockApplySettings(bool blnBlock);
|
|
|
|
void applySettings();
|
2017-03-17 05:04:00 -04:00
|
|
|
void applyRFSettings();
|
2017-03-18 06:05:28 -04:00
|
|
|
void setChannelMarkerBandwidth();
|
|
|
|
void setRFFiltersSlidersRange(int sampleRate);
|
2017-03-20 17:37:11 -04:00
|
|
|
void lineTimeUpdate();
|
2017-03-26 17:47:21 -04:00
|
|
|
void topTimeUpdate();
|
2017-03-20 17:37:11 -04:00
|
|
|
static float getFps(int fpsIndex);
|
|
|
|
static float getNominalLineTime(int nbLinesIndex, int fpsIndex);
|
2017-04-02 17:20:25 -04:00
|
|
|
static int getNumberOfLines(int nbLinesIndex);
|
2017-02-23 02:18:56 -05:00
|
|
|
|
|
|
|
void leaveEvent(QEvent*);
|
|
|
|
void enterEvent(QEvent*);
|
2017-11-13 19:06:19 -05:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void handleSourceMessages();
|
|
|
|
void onWidgetRolled(QWidget* widget, bool rollDown);
|
|
|
|
void tick();
|
|
|
|
void on_synchLevel_valueChanged(int value);
|
|
|
|
void on_blackLevel_valueChanged(int value);
|
|
|
|
void on_lineTime_valueChanged(int value);
|
|
|
|
void on_topTime_valueChanged(int value);
|
|
|
|
void on_hSync_clicked();
|
|
|
|
void on_vSync_clicked();
|
|
|
|
void on_invertVideo_clicked();
|
|
|
|
void on_halfImage_clicked();
|
|
|
|
void on_modulation_currentIndexChanged(int index);
|
|
|
|
void on_nbLines_currentIndexChanged(int index);
|
|
|
|
void on_fps_currentIndexChanged(int index);
|
|
|
|
void on_standard_currentIndexChanged(int index);
|
|
|
|
void on_reset_clicked(bool checked);
|
|
|
|
void on_rfBW_valueChanged(int value);
|
|
|
|
void on_rfOppBW_valueChanged(int value);
|
|
|
|
void on_rfFiltering_toggled(bool checked);
|
|
|
|
void on_decimatorEnable_toggled(bool checked);
|
|
|
|
void on_deltaFrequency_changed(qint64 value);
|
|
|
|
void on_bfo_valueChanged(int value);
|
|
|
|
void on_fmDeviation_valueChanged(int value);
|
|
|
|
void on_screenTabWidget_currentChanged(int index);
|
2017-02-23 02:18:56 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDE_ATVDEMODGUI_H
|