mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-09-02 21:27:48 -04:00
XTRX: GUI cosmetic changes
This commit is contained in:
parent
7a6ecc41bc
commit
3b648609db
@ -64,9 +64,6 @@ XTRXOutputGUI::XTRXOutputGUI(DeviceUISet *deviceUISet, QWidget* parent) :
|
|||||||
|
|
||||||
ui->channelNumberText->setText(tr("#%1").arg(m_XTRXOutput->getChannelIndex()));
|
ui->channelNumberText->setText(tr("#%1").arg(m_XTRXOutput->getChannelIndex()));
|
||||||
|
|
||||||
ui->hwInterpLabel->setText(QString::fromUtf8("H\u2193"));
|
|
||||||
ui->swInterpLabel->setText(QString::fromUtf8("S\u2193"));
|
|
||||||
|
|
||||||
connect(&m_updateTimer, SIGNAL(timeout()), this, SLOT(updateHardware()));
|
connect(&m_updateTimer, SIGNAL(timeout()), this, SLOT(updateHardware()));
|
||||||
connect(&m_statusTimer, SIGNAL(timeout()), this, SLOT(updateStatus()));
|
connect(&m_statusTimer, SIGNAL(timeout()), this, SLOT(updateStatus()));
|
||||||
m_statusTimer.start(500);
|
m_statusTimer.start(500);
|
||||||
@ -230,7 +227,7 @@ void XTRXOutputGUI::handleInputMessages()
|
|||||||
DSPSignalNotification* notif = (DSPSignalNotification*) message;
|
DSPSignalNotification* notif = (DSPSignalNotification*) message;
|
||||||
m_sampleRate = notif->getSampleRate();
|
m_sampleRate = notif->getSampleRate();
|
||||||
m_deviceCenterFrequency = notif->getCenterFrequency();
|
m_deviceCenterFrequency = notif->getCenterFrequency();
|
||||||
qDebug("XTRXInputGUI::handleInputMessages: DSPSignalNotification: SampleRate: %d, CenterFrequency: %llu", notif->getSampleRate(), notif->getCenterFrequency());
|
qDebug("XTRXOutputGUI::handleInputMessages: DSPSignalNotification: SampleRate: %d, CenterFrequency: %llu", notif->getSampleRate(), notif->getCenterFrequency());
|
||||||
updateSampleRateAndFrequency();
|
updateSampleRateAndFrequency();
|
||||||
|
|
||||||
delete message;
|
delete message;
|
||||||
|
@ -66,9 +66,6 @@ XTRXInputGUI::XTRXInputGUI(DeviceUISet *deviceUISet, QWidget* parent) :
|
|||||||
|
|
||||||
ui->channelNumberText->setText(tr("#%1").arg(m_XTRXInput->getChannelIndex()));
|
ui->channelNumberText->setText(tr("#%1").arg(m_XTRXInput->getChannelIndex()));
|
||||||
|
|
||||||
ui->hwDecimLabel->setText(QString::fromUtf8("H\u2193"));
|
|
||||||
ui->swDecimLabel->setText(QString::fromUtf8("S\u2193"));
|
|
||||||
|
|
||||||
connect(&m_updateTimer, SIGNAL(timeout()), this, SLOT(updateHardware()));
|
connect(&m_updateTimer, SIGNAL(timeout()), this, SLOT(updateHardware()));
|
||||||
connect(&m_statusTimer, SIGNAL(timeout()), this, SLOT(updateStatus()));
|
connect(&m_statusTimer, SIGNAL(timeout()), this, SLOT(updateStatus()));
|
||||||
m_statusTimer.start(500);
|
m_statusTimer.start(500);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user