2018-01-04 23:05:12 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
2022-01-06 16:47:41 -05:00
|
|
|
// Copyright (C) 2022 Edouard Griffiths, F4EXB. //
|
2018-01-04 23:05:12 -05:00
|
|
|
// //
|
|
|
|
// 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 08:43:33 -04:00
|
|
|
// (at your option) any later version. //
|
2018-01-04 23:05:12 -05: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/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2022-01-06 16:47:41 -05:00
|
|
|
#include "SWGFeatureSettings.h"
|
|
|
|
#include "jogdialcontroller.h"
|
|
|
|
#include "jogdialcontrollerwebapiadapter.h"
|
2018-01-04 23:05:12 -05:00
|
|
|
|
2022-01-06 16:47:41 -05:00
|
|
|
JogdialControllerWebAPIAdapter::JogdialControllerWebAPIAdapter()
|
|
|
|
{}
|
2018-01-04 23:05:12 -05:00
|
|
|
|
2022-01-06 16:47:41 -05:00
|
|
|
JogdialControllerWebAPIAdapter::~JogdialControllerWebAPIAdapter()
|
|
|
|
{}
|
2018-03-03 14:23:38 -05:00
|
|
|
|
2022-01-06 16:47:41 -05:00
|
|
|
int JogdialControllerWebAPIAdapter::webapiSettingsGet(
|
|
|
|
SWGSDRangel::SWGFeatureSettings& response,
|
|
|
|
QString& errorMessage)
|
2018-01-04 23:05:12 -05:00
|
|
|
{
|
2022-01-06 16:47:41 -05:00
|
|
|
(void) errorMessage;
|
|
|
|
response.setDemodAnalyzerSettings(new SWGSDRangel::SWGDemodAnalyzerSettings());
|
|
|
|
response.getDemodAnalyzerSettings()->init();
|
|
|
|
JogdialController::webapiFormatFeatureSettings(response, m_settings);
|
|
|
|
|
|
|
|
return 200;
|
|
|
|
}
|
|
|
|
|
|
|
|
int JogdialControllerWebAPIAdapter::webapiSettingsPutPatch(
|
|
|
|
bool force,
|
|
|
|
const QStringList& featureSettingsKeys,
|
|
|
|
SWGSDRangel::SWGFeatureSettings& response,
|
|
|
|
QString& errorMessage)
|
|
|
|
{
|
|
|
|
(void) force; // no action
|
|
|
|
(void) errorMessage;
|
|
|
|
JogdialController::webapiUpdateFeatureSettings(m_settings, featureSettingsKeys, response);
|
2018-01-04 23:05:12 -05:00
|
|
|
|
2022-01-06 16:47:41 -05:00
|
|
|
return 200;
|
|
|
|
}
|