2020-11-10 10:06:39 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2020 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 //
|
|
|
|
// (at your option) any later version. //
|
|
|
|
// //
|
|
|
|
// 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_CHANNELRX_SIGMFFILESINK_SIGMFFILESINKGUI_H_
|
|
|
|
#define PLUGINS_CHANNELRX_SIGMFFILESINK_SIGMFFILESINKGUI_H_
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
|
|
|
|
#include "dsp/channelmarker.h"
|
|
|
|
#include "channel/channelgui.h"
|
|
|
|
#include "util/messagequeue.h"
|
2022-01-09 04:27:12 +00:00
|
|
|
#include "settings/rollupstate.h"
|
2020-11-10 10:06:39 +00:00
|
|
|
|
|
|
|
#include "sigmffilesinksettings.h"
|
|
|
|
|
|
|
|
class PluginAPI;
|
|
|
|
class DeviceUISet;
|
|
|
|
class SigMFFileSink;
|
|
|
|
class BasebandSampleSink;
|
|
|
|
class SpectrumVis;
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class SigMFFileSinkGUI;
|
|
|
|
}
|
|
|
|
|
|
|
|
class SigMFFileSinkGUI : public ChannelGUI {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
static SigMFFileSinkGUI* create(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel);
|
|
|
|
virtual void destroy();
|
|
|
|
|
|
|
|
void resetToDefaults();
|
|
|
|
QByteArray serialize() const;
|
|
|
|
bool deserialize(const QByteArray& data);
|
|
|
|
virtual MessageQueue *getInputMessageQueue() { return &m_inputMessageQueue; }
|
2022-04-12 14:20:45 +00:00
|
|
|
virtual void setWorkspaceIndex(int index) { m_settings.m_workspaceIndex = index; };
|
|
|
|
virtual int getWorkspaceIndex() const { return m_settings.m_workspaceIndex; };
|
|
|
|
virtual void setGeometryBytes(const QByteArray& blob) { m_settings.m_geometryBytes = blob; };
|
|
|
|
virtual QByteArray getGeometryBytes() const { return m_settings.m_geometryBytes; };
|
|
|
|
virtual QString getTitle() const { return m_settings.m_title; };
|
|
|
|
virtual QColor getTitleColor() const { return m_settings.m_rgbColor; };
|
2022-04-12 16:27:27 +00:00
|
|
|
virtual void zetHidden(bool hidden) { m_settings.m_hidden = hidden; }
|
|
|
|
virtual bool getHidden() const { return m_settings.m_hidden; }
|
2022-04-16 14:45:53 +00:00
|
|
|
virtual ChannelMarker& getChannelMarker() { return m_channelMarker; }
|
2022-04-17 23:42:03 +00:00
|
|
|
virtual int getStreamIndex() const { return m_settings.m_streamIndex; }
|
|
|
|
virtual void setStreamIndex(int streamIndex) { m_settings.m_streamIndex = streamIndex; }
|
2020-11-10 10:06:39 +00:00
|
|
|
|
|
|
|
public slots:
|
|
|
|
void channelMarkerChangedByCursor();
|
|
|
|
void channelMarkerHighlightedByCursor();
|
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::SigMFFileSinkGUI* ui;
|
|
|
|
PluginAPI* m_pluginAPI;
|
|
|
|
DeviceUISet* m_deviceUISet;
|
|
|
|
ChannelMarker m_channelMarker;
|
2022-01-09 04:27:12 +00:00
|
|
|
RollupState m_rollupState;
|
2020-11-10 10:06:39 +00:00
|
|
|
SigMFFileSinkSettings m_settings;
|
2022-04-13 09:08:21 +00:00
|
|
|
qint64 m_deviceCenterFrequency;
|
2021-02-28 11:53:07 +00:00
|
|
|
bool m_running;
|
2020-11-10 10:06:39 +00:00
|
|
|
int m_fixedShiftIndex;
|
|
|
|
int m_basebandSampleRate;
|
|
|
|
double m_shiftFrequencyFactor; //!< Channel frequency shift factor
|
|
|
|
bool m_fixedPosition;
|
|
|
|
bool m_doApplySettings;
|
|
|
|
|
|
|
|
SigMFFileSink* m_sigMFFileSink;
|
|
|
|
SpectrumVis* m_spectrumVis;
|
|
|
|
MessageQueue m_inputMessageQueue;
|
|
|
|
|
|
|
|
uint32_t m_tickCount;
|
|
|
|
|
|
|
|
explicit SigMFFileSinkGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel, QWidget* parent = nullptr);
|
|
|
|
virtual ~SigMFFileSinkGUI();
|
|
|
|
|
|
|
|
void blockApplySettings(bool block);
|
|
|
|
void applySettings(bool force = false);
|
|
|
|
void applyDecimation();
|
|
|
|
void displaySettings();
|
|
|
|
void displayRate();
|
|
|
|
void displayPos();
|
|
|
|
void setFrequencyFromPos();
|
|
|
|
void setPosFromFrequency();
|
|
|
|
QString displayScaled(uint64_t value, int precision);
|
|
|
|
bool handleMessage(const Message& message);
|
2022-04-12 14:20:45 +00:00
|
|
|
void makeUIConnections();
|
2022-04-13 09:08:21 +00:00
|
|
|
void updateAbsoluteCenterFrequency();
|
2020-11-10 10:06:39 +00:00
|
|
|
|
|
|
|
void leaveEvent(QEvent*);
|
2022-11-17 14:36:12 +00:00
|
|
|
void enterEvent(EnterEventType*);
|
2020-11-10 10:06:39 +00:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void handleSourceMessages();
|
|
|
|
void on_deltaFrequency_changed(qint64 value);
|
|
|
|
void on_decimationFactor_currentIndexChanged(int index);
|
|
|
|
void on_fixedPosition_toggled(bool checked);
|
|
|
|
void on_position_valueChanged(int value);
|
|
|
|
void on_spectrumSquelch_toggled(bool checked);
|
|
|
|
void on_squelchLevel_valueChanged(int value);
|
|
|
|
void on_preRecordTime_valueChanged(int value);
|
|
|
|
void on_postSquelchTime_valueChanged(int value);
|
|
|
|
void on_squelchedRecording_toggled(bool checked);
|
|
|
|
void on_record_toggled(bool checked);
|
|
|
|
void on_showFileDialog_clicked(bool checked);
|
|
|
|
void onWidgetRolled(QWidget* widget, bool rollDown);
|
|
|
|
void onMenuDialogCalled(const QPoint& p);
|
|
|
|
void tick();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* PLUGINS_CHANNELRX_SIGMFFILESINK_SIGMFFILESINKGUI_H_ */
|