2015-10-03 23:28:11 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2015 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/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2015-06-21 06:46:47 -04:00
|
|
|
#ifndef INCLUDE_CHANNELANALYZERGUI_H
|
|
|
|
#define INCLUDE_CHANNELANALYZERGUI_H
|
|
|
|
|
2017-09-03 13:55:00 -04:00
|
|
|
#include <plugin/plugininstanceui.h>
|
2015-06-21 06:46:47 -04:00
|
|
|
#include "gui/rollupwidget.h"
|
2015-08-24 17:50:52 -04:00
|
|
|
#include "dsp/channelmarker.h"
|
2015-10-03 23:28:11 -04:00
|
|
|
#include "dsp/movingaverage.h"
|
2015-06-21 06:46:47 -04:00
|
|
|
|
|
|
|
class PluginAPI;
|
2016-10-10 19:17:55 -04:00
|
|
|
class DeviceSourceAPI;
|
2015-06-21 06:46:47 -04:00
|
|
|
|
2016-10-03 09:55:16 -04:00
|
|
|
class ThreadedBasebandSampleSink;
|
2016-10-02 15:52:39 -04:00
|
|
|
class DownChannelizer;
|
2015-06-21 06:46:47 -04:00
|
|
|
class ChannelAnalyzer;
|
2015-06-23 14:05:28 -04:00
|
|
|
class SpectrumScopeComboVis;
|
2015-06-21 06:46:47 -04:00
|
|
|
class SpectrumVis;
|
2015-06-21 22:16:27 -04:00
|
|
|
class ScopeVis;
|
2015-06-21 06:46:47 -04:00
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class ChannelAnalyzerGUI;
|
|
|
|
}
|
|
|
|
|
2017-09-03 13:55:00 -04:00
|
|
|
class ChannelAnalyzerGUI : public RollupWidget, public PluginInstanceUI {
|
2015-06-21 06:46:47 -04:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2016-10-10 19:17:55 -04:00
|
|
|
static ChannelAnalyzerGUI* create(PluginAPI* pluginAPI, DeviceSourceAPI *deviceAPI);
|
2015-06-21 06:46:47 -04:00
|
|
|
void destroy();
|
|
|
|
|
|
|
|
void setName(const QString& name);
|
|
|
|
QString getName() const;
|
2015-09-28 21:35:14 -04:00
|
|
|
virtual qint64 getCenterFrequency() const;
|
|
|
|
virtual void setCenterFrequency(qint64 centerFrequency);
|
2015-06-21 06:46:47 -04:00
|
|
|
|
|
|
|
void resetToDefaults();
|
|
|
|
QByteArray serialize() const;
|
|
|
|
bool deserialize(const QByteArray& data);
|
|
|
|
|
2015-08-17 02:29:34 -04:00
|
|
|
virtual bool handleMessage(const Message& message);
|
2015-06-21 06:46:47 -04:00
|
|
|
|
2016-05-16 13:37:53 -04:00
|
|
|
static const QString m_channelID;
|
|
|
|
|
2015-06-21 06:46:47 -04:00
|
|
|
private slots:
|
|
|
|
void viewChanged();
|
2015-07-12 03:32:54 -04:00
|
|
|
void channelSampleRateChanged();
|
2015-06-21 06:46:47 -04:00
|
|
|
void on_deltaFrequency_changed(quint64 value);
|
2015-10-03 23:28:11 -04:00
|
|
|
void on_deltaMinus_toggled(bool minus);
|
2015-06-21 06:46:47 -04:00
|
|
|
void on_BW_valueChanged(int value);
|
|
|
|
void on_lowCut_valueChanged(int value);
|
|
|
|
void on_spanLog2_valueChanged(int value);
|
|
|
|
void on_ssb_toggled(bool checked);
|
|
|
|
void onWidgetRolled(QWidget* widget, bool rollDown);
|
|
|
|
void onMenuDoubleClicked();
|
2015-10-03 23:28:11 -04:00
|
|
|
void tick();
|
2015-06-21 06:46:47 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::ChannelAnalyzerGUI* ui;
|
|
|
|
PluginAPI* m_pluginAPI;
|
2016-10-10 19:17:55 -04:00
|
|
|
DeviceSourceAPI* m_deviceAPI;
|
2015-08-24 17:50:52 -04:00
|
|
|
ChannelMarker m_channelMarker;
|
2015-06-21 06:46:47 -04:00
|
|
|
bool m_basicSettingsShown;
|
2015-08-18 19:02:52 -04:00
|
|
|
bool m_doApplySettings;
|
2015-06-21 06:46:47 -04:00
|
|
|
int m_rate;
|
|
|
|
int m_spanLog2;
|
2015-10-03 23:28:11 -04:00
|
|
|
MovingAverage<Real> m_channelPowerDbAvg;
|
2015-06-21 06:46:47 -04:00
|
|
|
|
2016-10-03 09:55:16 -04:00
|
|
|
ThreadedBasebandSampleSink* m_threadedChannelizer;
|
2016-10-02 15:52:39 -04:00
|
|
|
DownChannelizer* m_channelizer;
|
2015-06-21 06:46:47 -04:00
|
|
|
ChannelAnalyzer* m_channelAnalyzer;
|
2015-06-23 14:05:28 -04:00
|
|
|
SpectrumScopeComboVis* m_spectrumScopeComboVis;
|
2015-06-21 06:46:47 -04:00
|
|
|
SpectrumVis* m_spectrumVis;
|
2015-06-21 22:16:27 -04:00
|
|
|
ScopeVis* m_scopeVis;
|
2015-06-21 06:46:47 -04:00
|
|
|
|
2016-10-10 19:17:55 -04:00
|
|
|
explicit ChannelAnalyzerGUI(PluginAPI* pluginAPI, DeviceSourceAPI *deviceAPI, QWidget* parent = NULL);
|
2015-08-18 19:02:52 -04:00
|
|
|
virtual ~ChannelAnalyzerGUI();
|
2015-06-21 06:46:47 -04:00
|
|
|
|
|
|
|
int getEffectiveLowCutoff(int lowCutoff);
|
|
|
|
bool setNewRate(int spanLog2);
|
2015-08-18 19:02:52 -04:00
|
|
|
|
|
|
|
void blockApplySettings(bool block);
|
2015-06-21 06:46:47 -04:00
|
|
|
void applySettings();
|
|
|
|
|
|
|
|
void leaveEvent(QEvent*);
|
|
|
|
void enterEvent(QEvent*);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDE_CHANNELANALYZERGUI_H
|