2023-01-22 14:08:32 -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 //
|
|
|
|
// (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_DEMODFT8_FT8DEMODSETTINGSDIALOG_H_
|
|
|
|
#define PLUGINS_CHANNELRX_DEMODFT8_FT8DEMODSETTINGSDIALOG_H_
|
|
|
|
|
|
|
|
#include "ui_ft8demodsettingsdialog.h"
|
|
|
|
|
|
|
|
class FT8DemodSettings;
|
|
|
|
class QStringList;
|
|
|
|
class QTableWidgetItem;
|
|
|
|
|
|
|
|
class FT8DemodSettingsDialog : public QDialog {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
FT8DemodSettingsDialog(FT8DemodSettings& settings, QStringList& settingsKeys, QWidget* parent = nullptr);
|
|
|
|
~FT8DemodSettingsDialog();
|
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::FT8DemodSettingsDialog* ui;
|
|
|
|
FT8DemodSettings& m_settings;
|
|
|
|
QStringList& m_settingsKeys;
|
|
|
|
|
|
|
|
enum BandCol {
|
|
|
|
BAND_NAME,
|
|
|
|
BAND_BASE_FREQUENCY,
|
|
|
|
BAND_OFFSET_FREQUENCY,
|
|
|
|
};
|
|
|
|
|
|
|
|
void resizeBandsTable();
|
|
|
|
void populateBandsTable();
|
|
|
|
QList<QTableWidgetItem*> takeRow(int row);
|
|
|
|
void setRow(int row, const QList<QTableWidgetItem*>& rowItems);
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void accept();
|
|
|
|
void reject();
|
|
|
|
void on_decoderNbThreads_valueChanged(int value);
|
|
|
|
void on_decoderTimeBudget_valueChanged(double value);
|
2023-01-28 02:58:50 -05:00
|
|
|
void on_osdEnable_toggled(bool checked);
|
|
|
|
void on_osdDepth_valueChanged(int value);
|
|
|
|
void on_osdLDPCThreshold_valueChanged(int value);
|
2023-01-29 13:27:45 -05:00
|
|
|
void on_verifyOSD_stateChanged(int state);
|
2023-01-22 14:08:32 -05:00
|
|
|
void on_addBand_clicked();
|
|
|
|
void on_deleteBand_clicked();
|
|
|
|
void on_moveBandUp_clicked();
|
|
|
|
void on_moveBandDown_clicked();
|
|
|
|
void on_restoreBandPresets_clicked();
|
|
|
|
void textCellChanged(int row, int col);
|
|
|
|
void baseFrequencyCellChanged();
|
|
|
|
void offsetFrequencyCellChanged();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // PLUGINS_CHANNELRX_DEMODFT8_FT8DEMODSETTINGSDIALOG_H_
|