mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-15 16:42:12 -05:00
Highlight <MyCall> in received Fox message.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8298 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
385c83658e
commit
bb5c11f6ea
@ -203,6 +203,7 @@ void DisplayText::displayDecodedText(DecodedText const& decodedText, QString con
|
|||||||
decodedText.indexOf (" " + myCall + " ") >= 0
|
decodedText.indexOf (" " + myCall + " ") >= 0
|
||||||
or decodedText.indexOf (" " + myCall + "/") >= 0
|
or decodedText.indexOf (" " + myCall + "/") >= 0
|
||||||
or decodedText.indexOf ("/" + myCall + " ") >= 0
|
or decodedText.indexOf ("/" + myCall + " ") >= 0
|
||||||
|
or decodedText.indexOf ("<" + myCall + ">") >= 0
|
||||||
or decodedText.indexOf ("<" + myCall + " ") >= 0
|
or decodedText.indexOf ("<" + myCall + " ") >= 0
|
||||||
or decodedText.indexOf (" " + myCall + ">") >= 0)) {
|
or decodedText.indexOf (" " + myCall + ">") >= 0)) {
|
||||||
bg = color_MyCall;
|
bg = color_MyCall;
|
||||||
|
@ -2671,7 +2671,6 @@ void MainWindow::decode() //decode()
|
|||||||
narg[12]=0;
|
narg[12]=0;
|
||||||
narg[13]=-1;
|
narg[13]=-1;
|
||||||
narg[14]=m_config.aggressive();
|
narg[14]=m_config.aggressive();
|
||||||
qDebug() << "a2" << dec_data.params.nutc;
|
|
||||||
memcpy(d2b,dec_data.d2,2*360000);
|
memcpy(d2b,dec_data.d2,2*360000);
|
||||||
watcher3.setFuture (QtConcurrent::run (std::bind (fast_decode_,&d2b[0],
|
watcher3.setFuture (QtConcurrent::run (std::bind (fast_decode_,&d2b[0],
|
||||||
&narg[0],&m_TRperiod,&m_msg[0][0],
|
&narg[0],&m_TRperiod,&m_msg[0][0],
|
||||||
@ -2882,6 +2881,7 @@ void MainWindow::readFromStdout() //readFromStdout
|
|||||||
if (bDisplayRight) {
|
if (bDisplayRight) {
|
||||||
// This msg is within 10 hertz of our tuned frequency, or a JT4 or JT65 avg,
|
// This msg is within 10 hertz of our tuned frequency, or a JT4 or JT65 avg,
|
||||||
// or contains MyCall
|
// or contains MyCall
|
||||||
|
qDebug() << "bb";
|
||||||
ui->decodedTextBrowser2->displayDecodedText(decodedtext,m_baseCall,false,
|
ui->decodedTextBrowser2->displayDecodedText(decodedtext,m_baseCall,false,
|
||||||
m_logBook,m_config.color_CQ(),m_config.color_MyCall(),
|
m_logBook,m_config.color_CQ(),m_config.color_MyCall(),
|
||||||
m_config.color_DXCC(),m_config.color_NewCall(),m_config.ppfx());
|
m_config.color_DXCC(),m_config.color_NewCall(),m_config.ppfx());
|
||||||
@ -4143,7 +4143,6 @@ void MainWindow::processMessage (DecodedText const& message, Qt::KeyboardModifie
|
|||||||
QString s1 = m_QSOText.trimmed ();
|
QString s1 = m_QSOText.trimmed ();
|
||||||
QString s2 = message.string ().trimmed();
|
QString s2 = message.string ().trimmed();
|
||||||
if (s1!=s2 and !message.isTX()) {
|
if (s1!=s2 and !message.isTX()) {
|
||||||
qDebug() << "bb" << s1 << s2;
|
|
||||||
ui->decodedTextBrowser2->displayDecodedText(message, m_baseCall,
|
ui->decodedTextBrowser2->displayDecodedText(message, m_baseCall,
|
||||||
false, m_logBook,m_config.color_CQ(), m_config.color_MyCall(),
|
false, m_logBook,m_config.color_CQ(), m_config.color_MyCall(),
|
||||||
m_config.color_DXCC(),m_config.color_NewCall(),m_config.ppfx());
|
m_config.color_DXCC(),m_config.color_NewCall(),m_config.ppfx());
|
||||||
|
Loading…
Reference in New Issue
Block a user