/////////////////////////////////////////////////////////////////////////////////// // Copyright (C) 2017 Edouard Griffiths, F4EXB. // // Copyright (C) 2023 Jon Beniston, M7RCE // // // // 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 . // /////////////////////////////////////////////////////////////////////////////////// #ifndef INCLUDE_HEATMAPSETTINGS_H #define INCLUDE_HEATMAPSETTINGS_H #include #include #include "dsp/dsptypes.h" class Serializable; struct HeatMapSettings { qint32 m_inputFrequencyOffset; Real m_rfBandwidth; float m_minPower; float m_maxPower; QString m_colorMapName; enum Mode { None, Average, Max, Min, PulseAverage, PathLoss, } m_mode; float m_pulseThreshold; int m_averagePeriodUS; int m_sampleRate; bool m_txPosValid; float m_txLatitude; float m_txLongitude; float m_txPower; bool m_displayChart; bool m_displayAverage; bool m_displayMax; bool m_displayMin; bool m_displayPulseAverage; bool m_displayPathLoss; int m_displayMins; quint32 m_rgbColor; QString m_title; Serializable *m_channelMarker; int m_streamIndex; //!< MIMO channel. Not relevant when connected to SI (single Rx). bool m_useReverseAPI; QString m_reverseAPIAddress; uint16_t m_reverseAPIPort; uint16_t m_reverseAPIDeviceIndex; uint16_t m_reverseAPIChannelIndex; Serializable *m_scopeGUI; Serializable *m_rollupState; int m_workspaceIndex; QByteArray m_geometryBytes; bool m_hidden; HeatMapSettings(); void resetToDefaults(); void setChannelMarker(Serializable *channelMarker) { m_channelMarker = channelMarker; } void setRollupState(Serializable *rollupState) { m_rollupState = rollupState; } void setScopeGUI(Serializable *scopeGUI) { m_scopeGUI = scopeGUI; } QByteArray serialize() const; bool deserialize(const QByteArray& data); }; #endif /* INCLUDE_HEATMAPSETTINGS_H */