diff --git a/src/applications/gqrx/mainwindow.cpp b/src/applications/gqrx/mainwindow.cpp index a893564c63..f9bc93d880 100644 --- a/src/applications/gqrx/mainwindow.cpp +++ b/src/applications/gqrx/mainwindow.cpp @@ -1658,6 +1658,8 @@ void MainWindow::startIqRecording(const QString& recdir) toString("%1/gqrx_yyyyMMdd_hhmmss_%2_%3_fc.'raw'") .arg(recdir).arg(freq).arg(sr/dec); + ui->actionIoConfig->setDisabled(true); + ui->actionLoadSettings->setDisabled(true); // start recorder; fails if recording already in progress if (rx->start_iq_recording(lastRec.toStdString())) { @@ -1688,6 +1690,8 @@ void MainWindow::stopIqRecording() ui->statusBar->showMessage(tr("Error stopping I/Q recoder")); else ui->statusBar->showMessage(tr("I/Q data recoding stopped"), 5000); + ui->actionIoConfig->setDisabled(false); + ui->actionLoadSettings->setDisabled(false); } void MainWindow::startIqPlayback(const QString& filename, float samprate, qint64 center_freq) @@ -1730,6 +1734,9 @@ void MainWindow::startIqPlayback(const QString& filename, float samprate, qint64 // FIXME: would be nice with good/bad status ui->statusBar->showMessage(tr("Playing %1").arg(filename)); + ui->actionIoConfig->setDisabled(true); + ui->actionLoadSettings->setDisabled(true); + ui->actionSaveSettings->setDisabled(true); on_actionDSP_triggered(true); } @@ -1743,6 +1750,9 @@ void MainWindow::stopIqPlayback() } ui->statusBar->showMessage(tr("I/Q playback stopped"), 5000); + ui->actionIoConfig->setDisabled(false); + ui->actionLoadSettings->setDisabled(false); + ui->actionSaveSettings->setDisabled(false); // restore original input device auto indev = m_settings->value("input/device", "").toString(); diff --git a/src/qtgui/iq_tool.cpp b/src/qtgui/iq_tool.cpp index 9f3bd5305a..6fd325a180 100644 --- a/src/qtgui/iq_tool.cpp +++ b/src/qtgui/iq_tool.cpp @@ -100,6 +100,20 @@ void CIqTool::on_listWidget_currentTextChanged(const QString ¤tText) } +/*! \brief Show/hide/enable/disable GUI controls */ + +void CIqTool::switchControlsState(bool recording, bool playback) +{ + ui->recButton->setEnabled(!playback); + + ui->playButton->setEnabled(!recording); + ui->slider->setEnabled(!recording); + + ui->listWidget->setEnabled(!(recording || playback)); + ui->recDirEdit->setEnabled(!(recording || playback)); + ui->recDirButton->setEnabled(!(recording || playback)); +} + /*! \brief Start/stop playback */ void CIqTool::on_playButton_clicked(bool checked) { @@ -125,9 +139,8 @@ void CIqTool::on_playButton_clicked(bool checked) } else { - ui->listWidget->setEnabled(false); - ui->recButton->setEnabled(false); on_listWidget_currentTextChanged(current_file); + switchControlsState(false, true); emit startPlayback(recdir->absoluteFilePath(current_file), (float)sample_rate, center_freq); } @@ -135,8 +148,7 @@ void CIqTool::on_playButton_clicked(bool checked) else { emit stopPlayback(); - ui->listWidget->setEnabled(true); - ui->recButton->setEnabled(true); + switchControlsState(false, false); ui->slider->setValue(0); } } @@ -149,9 +161,7 @@ void CIqTool::on_playButton_clicked(bool checked) */ void CIqTool::cancelPlayback() { - ui->playButton->setChecked(false); - ui->listWidget->setEnabled(true); - ui->recButton->setEnabled(true); + switchControlsState(false, false); is_playing = false; } @@ -173,7 +183,7 @@ void CIqTool::on_recButton_clicked(bool checked) if (checked) { - ui->playButton->setEnabled(false); + switchControlsState(true, false); emit startRecording(recdir->path()); refreshDir(); @@ -181,7 +191,7 @@ void CIqTool::on_recButton_clicked(bool checked) } else { - ui->playButton->setEnabled(true); + switchControlsState(false, false); emit stopRecording(); } } diff --git a/src/qtgui/iq_tool.h b/src/qtgui/iq_tool.h index cb8da0f5b1..e47e6ca565 100644 --- a/src/qtgui/iq_tool.h +++ b/src/qtgui/iq_tool.h @@ -85,6 +85,8 @@ private slots: void refreshDir(void); void refreshTimeWidgets(void); void parseFileName(const QString &filename); + void switchControlsState(bool recording, bool playback); + private: Ui::CIqTool *ui;