1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-02 06:04:39 -04:00

Feature plugins framework: presets

This commit is contained in:
f4exb
2020-09-24 05:38:05 +02:00
parent 5f43ace810
commit cd5a4db876
42 changed files with 2242 additions and 26 deletions
+24
View File
@@ -110,10 +110,34 @@ void WebAPIAdapterInterface::ConfigKeys::debug() const
qDebug(" }");
}
qDebug("featuresets:");
foreach(FeatureSetPresetKeys presetKeys, m_featureSetPresetKeys)
{
qDebug(" {");
foreach(QString presetKey, presetKeys.m_keys) {
qDebug(" %s", qPrintable(presetKey));
}
qDebug(" featureConfigs");
foreach(FeatureKeys featureKeys, presetKeys.m_featureKeys)
{
qDebug(" {");
qDebug(" config:");
foreach(QString featureKey, featureKeys.m_featureKeys) {
qDebug(" %s", qPrintable(featureKey));
}
qDebug(" }");
}
qDebug(" }");
}
qDebug("workingPreset:");
foreach(QString presetKey, m_workingPresetKeys.m_keys) {
qDebug(" %s", qPrintable(presetKey));
}
qDebug("workingFeatureSetPreset:");
foreach(QString presetKey, m_workingFeatureSetPresetKeys.m_keys) {
qDebug(" %s", qPrintable(presetKey));
}
qDebug(" spectrumConfig:");
foreach(QString spectrumKey, m_workingPresetKeys.m_spectrumKeys) {
qDebug(" %s", qPrintable(spectrumKey));