2016-10-20 19:21:17 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2016 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 //
|
2019-04-11 00:39:30 -04:00
|
|
|
// (at your option) any later version. //
|
2016-10-20 19:21:17 -04: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/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2020-08-03 18:29:15 -04:00
|
|
|
#ifndef PLUGINS_SAMPLESINK_FILEOUTPUT_FILEOUTPUTSETTINGS_H_
|
|
|
|
#define PLUGINS_SAMPLESINK_FILEOUTPUT_FILEOUTPUTSETTINGS_H_
|
2016-10-20 19:21:17 -04:00
|
|
|
|
2020-08-03 18:29:15 -04:00
|
|
|
struct FileOutputSettings {
|
2016-10-20 19:21:17 -04:00
|
|
|
quint64 m_centerFrequency;
|
2017-04-06 13:19:32 -04:00
|
|
|
quint64 m_sampleRate;
|
2017-01-01 21:14:46 -05:00
|
|
|
quint32 m_log2Interp;
|
2021-05-17 19:52:25 -04:00
|
|
|
QString m_fileName;
|
|
|
|
bool m_useReverseAPI;
|
|
|
|
QString m_reverseAPIAddress;
|
|
|
|
uint16_t m_reverseAPIPort;
|
|
|
|
uint16_t m_reverseAPIDeviceIndex;
|
2016-10-20 19:21:17 -04:00
|
|
|
|
2020-08-03 18:29:15 -04:00
|
|
|
FileOutputSettings();
|
2016-10-20 19:21:17 -04:00
|
|
|
void resetToDefaults();
|
|
|
|
QByteArray serialize() const;
|
|
|
|
bool deserialize(const QByteArray& data);
|
2022-10-30 05:25:19 -04:00
|
|
|
void applySettings(const QStringList& settingsKeys, const FileOutputSettings& settings);
|
|
|
|
QString getDebugString(const QStringList& settingsKeys, bool force=false) const;
|
2016-10-20 19:21:17 -04:00
|
|
|
};
|
|
|
|
|
2020-08-03 18:29:15 -04:00
|
|
|
#endif /* PLUGINS_SAMPLESINK_FILEOUTPUT_FILEOUTPUTSETTINGS_H_ */
|