1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-04-06 03:29:12 -04:00

ATV Demod: express rf filters cutoff in kHz

This commit is contained in:
f4exb 2017-03-21 14:52:18 +01:00
parent dd31909e8a
commit 051b917502
2 changed files with 11 additions and 5 deletions

View File

@ -539,14 +539,14 @@ void ATVDemodGUI::on_modulation_currentIndexChanged(int index)
void ATVDemodGUI::on_rfBW_valueChanged(int value)
{
ui->rfBWText->setText(QString("%1 MHz").arg(value / 10.0, 0, 'f', 1));
ui->rfBWText->setText(QString("%1k").arg(value * 100.0, 0, 'f', 0));
setChannelMarkerBandwidth();
applyRFSettings();
}
void ATVDemodGUI::on_rfOppBW_valueChanged(int value)
{
ui->rfOppBWText->setText(QString("%1").arg(value / 10.0, 0, 'f', 1));
ui->rfOppBWText->setText(QString("%1k").arg(value * 100.0, 0, 'f', 0));
setChannelMarkerBandwidth();
applyRFSettings();
}

View File

@ -320,12 +320,15 @@
<widget class="QLabel" name="rfOppBWText">
<property name="minimumSize">
<size>
<width>30</width>
<width>60</width>
<height>0</height>
</size>
</property>
<property name="toolTip">
<string>opposite band cutoff frequency (kHz)</string>
</property>
<property name="text">
<string>1.0</string>
<string>0000k</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
@ -384,8 +387,11 @@
<height>0</height>
</size>
</property>
<property name="toolTip">
<string>in band cutoff frequency (kHz)</string>
</property>
<property name="text">
<string>1.0 MHz</string>
<string>0000k</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>