From ffd5dd1db292fc9ce958f9a470072c1e0bc559b6 Mon Sep 17 00:00:00 2001 From: Brian Moran Date: Thu, 29 Aug 2024 10:11:23 -0700 Subject: [PATCH] remove hound callsign from left hand side if clicked on in active station window --- widgets/mainwindow.cpp | 12 ++++++++++++ widgets/mainwindow.h | 1 + 2 files changed, 13 insertions(+) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 6d56917df..8c26b3621 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -3998,6 +3998,7 @@ void MainWindow::queueActiveWindowHound2(QString line) { refreshHoundQueueDisplay(); // TODO: remove from active stations window too? } + removeHoundFromCallingList(caller); } } else { LOG_INFO(QString("ActiveStations Window click: skipping %1").arg(line)); @@ -10239,6 +10240,17 @@ QString MainWindow::sortHoundCalls(QString t, int isort, int max_dB) return m_houndCallers; } +void MainWindow::removeHoundFromCallingList(QString callsign) +{ + QString text = m_houndCallers; + QRegularExpression re = QRegularExpression("^" + callsign + "[^\\n]+\\n", QRegularExpression::MultilineOption); + text.remove(re); + if (text != m_houndCallers) { + m_nSortedHounds--; + m_houndCallers = text; + ui->decodedTextBrowser->setHighlightedHoundText(m_houndCallers); + } +} //------------------------------------------------------------------------------ void MainWindow::selectHound(QString line, bool bTopQueue) { diff --git a/widgets/mainwindow.h b/widgets/mainwindow.h index 22e99c5f6..918d284f3 100644 --- a/widgets/mainwindow.h +++ b/widgets/mainwindow.h @@ -873,6 +873,7 @@ private: QChar current_submode () const; // returns QChar {0} if submode is not appropriate void write_transmit_entry (QString const& file_name); void selectHound(QString t, bool bTopQueue); + void removeHoundFromCallingList(QString callsign); void houndCallers(); void updateFoxQSOsInProgressDisplay(); void foxQueueTopCallCommand();