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

Massive UI revamping (v7): created configurations with just Features for now

This commit is contained in:
f4exb
2022-04-05 16:26:57 +02:00
parent 44a90939ef
commit 43f53fe26a
73 changed files with 1496 additions and 222 deletions
@@ -44,6 +44,7 @@ void RigCtlServerSettings::resetToDefaults()
m_reverseAPIPort = 8888;
m_reverseAPIFeatureSetIndex = 0;
m_reverseAPIFeatureIndex = 0;
m_workspaceIndex = 0;
}
QByteArray RigCtlServerSettings::serialize() const
@@ -66,6 +67,9 @@ QByteArray RigCtlServerSettings::serialize() const
s.writeBlob(12, m_rollupState->serialize());
}
s.writeS32(13, m_workspaceIndex);
s.writeBlob(14, m_geometryBytes);
return s.final();
}
@@ -119,6 +123,9 @@ bool RigCtlServerSettings::deserialize(const QByteArray& data)
m_rollupState->deserialize(bytetmp);
}
d.readS32(13, &m_workspaceIndex, 0);
d.readBlob(14, &m_geometryBytes);
return true;
}
else