2017-01-29 13:51:45 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2017 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 //
|
|
|
|
// //
|
|
|
|
// 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_CHANNELANALYZERNGGUI_H
|
|
|
|
#define INCLUDE_CHANNELANALYZERNGGUI_H
|
|
|
|
|
2018-05-19 19:10:08 -04:00
|
|
|
#include "plugin/plugininstancegui.h"
|
2017-01-29 13:51:45 -05:00
|
|
|
#include "gui/rollupwidget.h"
|
|
|
|
#include "dsp/channelmarker.h"
|
2018-02-03 04:33:02 -05:00
|
|
|
#include "dsp/dsptypes.h"
|
|
|
|
#include "util/movingaverage.h"
|
2017-09-16 16:23:31 -04:00
|
|
|
#include "util/messagequeue.h"
|
2017-01-29 13:51:45 -05:00
|
|
|
|
2018-05-30 09:37:56 -04:00
|
|
|
#include "chanalyzersettings.h"
|
2018-05-19 19:10:08 -04:00
|
|
|
|
2017-01-29 13:51:45 -05:00
|
|
|
class PluginAPI;
|
2017-10-31 03:24:05 -04:00
|
|
|
class DeviceUISet;
|
2017-11-08 19:03:05 -05:00
|
|
|
class BasebandSampleSink;
|
2018-05-30 09:37:56 -04:00
|
|
|
class ChannelAnalyzer;
|
2017-01-29 13:51:45 -05:00
|
|
|
class SpectrumScopeNGComboVis;
|
|
|
|
class SpectrumVis;
|
|
|
|
class ScopeVisNG;
|
|
|
|
|
|
|
|
namespace Ui {
|
2018-05-30 09:49:28 -04:00
|
|
|
class ChannelAnalyzerGUI;
|
2017-01-29 13:51:45 -05:00
|
|
|
}
|
|
|
|
|
2018-05-30 09:37:56 -04:00
|
|
|
class ChannelAnalyzerGUI : public RollupWidget, public PluginInstanceGUI {
|
2017-01-29 13:51:45 -05:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2018-05-30 09:37:56 -04:00
|
|
|
static ChannelAnalyzerGUI* create(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel);
|
2017-09-16 04:45:08 -04:00
|
|
|
virtual void destroy();
|
2017-01-29 13:51:45 -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; }
|
2017-01-29 13:51:45 -05:00
|
|
|
virtual bool handleMessage(const Message& message);
|
|
|
|
|
2017-11-13 18:35:25 -05:00
|
|
|
public slots:
|
|
|
|
void channelMarkerChangedByCursor();
|
2017-11-14 16:58:35 -05:00
|
|
|
void channelMarkerHighlightedByCursor();
|
2017-01-29 13:51:45 -05:00
|
|
|
|
|
|
|
private:
|
2018-05-30 09:49:28 -04:00
|
|
|
Ui::ChannelAnalyzerGUI* ui;
|
2017-01-29 13:51:45 -05:00
|
|
|
PluginAPI* m_pluginAPI;
|
2017-10-31 03:24:05 -04:00
|
|
|
DeviceUISet* m_deviceUISet;
|
2017-01-29 13:51:45 -05:00
|
|
|
ChannelMarker m_channelMarker;
|
2018-05-30 09:37:56 -04:00
|
|
|
ChannelAnalyzerSettings m_settings;
|
2017-01-29 13:51:45 -05:00
|
|
|
bool m_doApplySettings;
|
2017-02-28 23:23:37 -05:00
|
|
|
int m_rate; //!< sample rate after final in-channel decimation (spanlog2)
|
2018-06-26 14:03:56 -04:00
|
|
|
MovingAverageUtil<double, double, 40> m_channelPowerAvg;
|
2017-01-29 13:51:45 -05:00
|
|
|
|
2018-05-30 09:37:56 -04:00
|
|
|
ChannelAnalyzer* m_channelAnalyzer;
|
2017-01-29 13:51:45 -05:00
|
|
|
SpectrumScopeNGComboVis* m_spectrumScopeComboVis;
|
|
|
|
SpectrumVis* m_spectrumVis;
|
|
|
|
ScopeVisNG* m_scopeVis;
|
2017-09-16 16:23:31 -04:00
|
|
|
MessageQueue m_inputMessageQueue;
|
2017-01-29 13:51:45 -05:00
|
|
|
|
2018-05-30 09:37:56 -04:00
|
|
|
explicit ChannelAnalyzerGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel, QWidget* parent = 0);
|
|
|
|
virtual ~ChannelAnalyzerGUI();
|
2017-01-29 13:51:45 -05:00
|
|
|
|
2017-02-28 23:23:37 -05:00
|
|
|
int getRequestedChannelSampleRate();
|
2018-05-19 19:10:08 -04:00
|
|
|
void setNewFinalRate(); //!< set sample rate after final in-channel decimation
|
2017-02-27 19:30:12 -05:00
|
|
|
void setFiltersUIBoundaries();
|
2017-01-29 13:51:45 -05:00
|
|
|
|
|
|
|
void blockApplySettings(bool block);
|
2018-05-19 19:10:08 -04:00
|
|
|
void applySettings(bool force = false);
|
|
|
|
void displaySettings();
|
2018-05-19 20:24:38 -04:00
|
|
|
void displayPLLSettings();
|
2018-05-19 19:10:08 -04:00
|
|
|
void setSpectrumDisplay();
|
2017-01-29 13:51:45 -05:00
|
|
|
|
|
|
|
void leaveEvent(QEvent*);
|
|
|
|
void enterEvent(QEvent*);
|
2017-11-13 18:35:25 -05:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void on_deltaFrequency_changed(qint64 value);
|
|
|
|
void on_channelSampleRate_changed(quint64 value);
|
2018-05-12 00:01:54 -04:00
|
|
|
void on_pll_toggled(bool checked);
|
2018-05-14 14:47:23 -04:00
|
|
|
void on_pllPskOrder_currentIndexChanged(int index);
|
2017-11-13 18:35:25 -05:00
|
|
|
void on_useRationalDownsampler_toggled(bool checked);
|
2018-05-20 12:17:53 -04:00
|
|
|
void on_signalSelect_currentIndexChanged(int index);
|
2018-05-21 20:20:36 -04:00
|
|
|
void on_rrcFilter_toggled(bool checked);
|
|
|
|
void on_rrcRolloff_valueChanged(int value);
|
2017-11-13 18:35:25 -05:00
|
|
|
void on_BW_valueChanged(int value);
|
|
|
|
void on_lowCut_valueChanged(int value);
|
|
|
|
void on_spanLog2_currentIndexChanged(int index);
|
|
|
|
void on_ssb_toggled(bool checked);
|
|
|
|
void onWidgetRolled(QWidget* widget, bool rollDown);
|
2018-05-19 19:10:08 -04:00
|
|
|
void onMenuDialogCalled(const QPoint& p);
|
2017-11-13 18:35:25 -05:00
|
|
|
void handleInputMessages();
|
|
|
|
void tick();
|
2017-01-29 13:51:45 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDE_CHANNELANALYZERNGGUI_H
|