1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-05-24 00:56:57 -04:00

Polish freqdisplay naming clarity in GUI constants

Agent-Logs-Url: https://github.com/srcejon/sdrangel/sessions/3b53c052-7f2b-4597-b509-d7cc17f3b0b0

Co-authored-by: srcejon <57259258+srcejon@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2026-04-18 15:19:24 +00:00 committed by GitHub
parent 965e647e2d
commit f8c7728391
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -14,7 +14,7 @@ namespace {
// For typical feature windows this keeps the text close to ~22% of the smallest
// widget dimension, which yields large readable digits without clipping.
constexpr double frequencyFontScale = 0.22;
constexpr const char* rxTxKinds = "RT";
constexpr const char* rxTxChannelKinds = "RT";
constexpr int pollIntervalMs = 1000;
constexpr int minimumFrequencyFontPointSize = 10;
}
@ -61,7 +61,7 @@ FreqDisplayGUI::FreqDisplayGUI(PluginAPI* pluginAPI, FeatureUISet *featureUISet,
FeatureGUI(parent),
ui(new Ui::FreqDisplayGUI),
m_freqDisplay(reinterpret_cast<FreqDisplay*>(feature)),
m_availableChannelOrFeatureHandler(QStringList(), rxTxKinds),
m_availableChannelOrFeatureHandler(QStringList(), rxTxChannelKinds),
m_doApplySettings(true)
{
(void) pluginAPI;
@ -230,9 +230,9 @@ void FreqDisplayGUI::updateFrequencyText()
return;
}
const qint64 centerFrequencyRounded = qRound64(centerFrequencyHz);
const qint64 centerFrequency = qRound64(centerFrequencyHz);
const qint64 channelOffset = static_cast<qint64>(offsetHz);
const qint64 absoluteFrequency = centerFrequencyRounded + channelOffset;
const qint64 absoluteFrequency = centerFrequency + channelOffset;
ui->frequencyValue->setText(tr("%1 Hz").arg(QLocale().toString(absoluteFrequency)));
updateFrequencyFont();
}