mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-23 20:58:55 -05:00
1. Blank lines between decoding periods now optional.
2. "CQ DX" is now treated properly when the decoded line is double.clicked. 3. Displayed sync values reduced by 1/2. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3124 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
b0bdd95949
commit
461fdd79aa
@ -111,7 +111,8 @@ subroutine decoder(ss,c0)
|
|||||||
call decode9(i1SoftSymbols,limit,nlim,msg)
|
call decode9(i1SoftSymbols,limit,nlim,msg)
|
||||||
call timer('decode9 ',1)
|
call timer('decode9 ',1)
|
||||||
|
|
||||||
sync=(syncpk-1.0)/2.0
|
! sync=(syncpk-1.0)/2.0
|
||||||
|
sync=(syncpk+1)/4.0
|
||||||
if(sync.lt.0.0 .or. snrdb.lt.dblim-2.0) sync=0.0
|
if(sync.lt.0.0 .or. snrdb.lt.dblim-2.0) sync=0.0
|
||||||
nsync=sync
|
nsync=sync
|
||||||
if(nsync.gt.10) nsync=10
|
if(nsync.gt.10) nsync=10
|
||||||
|
@ -160,6 +160,7 @@ MainWindow::MainWindow(QWidget *parent) :
|
|||||||
m_secID=0;
|
m_secID=0;
|
||||||
m_promptToLog=false;
|
m_promptToLog=false;
|
||||||
m_blankLine=false;
|
m_blankLine=false;
|
||||||
|
m_insertBlank=false;
|
||||||
decodeBusy(false);
|
decodeBusy(false);
|
||||||
|
|
||||||
ui->xThermo->setFillBrush(Qt::green);
|
ui->xThermo->setFillBrush(Qt::green);
|
||||||
@ -369,6 +370,7 @@ void MainWindow::writeSettings()
|
|||||||
settings.setValue("HandshakeIndex",m_handshakeIndex);
|
settings.setValue("HandshakeIndex",m_handshakeIndex);
|
||||||
settings.setValue("BandIndex",m_band);
|
settings.setValue("BandIndex",m_band);
|
||||||
settings.setValue("PromptToLog",m_promptToLog);
|
settings.setValue("PromptToLog",m_promptToLog);
|
||||||
|
settings.setValue("InsertBlank",m_insertBlank);
|
||||||
settings.endGroup();
|
settings.endGroup();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -462,6 +464,8 @@ void MainWindow::readSettings()
|
|||||||
ui->bandComboBox->setCurrentIndex(m_band);
|
ui->bandComboBox->setCurrentIndex(m_band);
|
||||||
m_promptToLog=settings.value("PromptToLog",false).toBool();
|
m_promptToLog=settings.value("PromptToLog",false).toBool();
|
||||||
ui->actionPrompt_to_log_QSO->setChecked(m_promptToLog);
|
ui->actionPrompt_to_log_QSO->setChecked(m_promptToLog);
|
||||||
|
m_insertBlank=settings.value("InsertBlank",false).toBool();
|
||||||
|
ui->actionBlank_line_between_decoding_periods->setChecked(m_insertBlank);
|
||||||
|
|
||||||
settings.endGroup();
|
settings.endGroup();
|
||||||
|
|
||||||
@ -1180,7 +1184,7 @@ void MainWindow::readFromStdout() //readFromStdout
|
|||||||
|
|
||||||
QTextCursor cursor;
|
QTextCursor cursor;
|
||||||
QTextBlockFormat bf;
|
QTextBlockFormat bf;
|
||||||
if(m_blankLine) {
|
if(m_insertBlank and m_blankLine) {
|
||||||
QString bg="#9fb6cd";
|
QString bg="#9fb6cd";
|
||||||
bf.setBackground(QBrush(QColor(bg)));
|
bf.setBackground(QBrush(QColor(bg)));
|
||||||
QString s = "<table border=0 cellspacing=0 width=100%><tr><td bgcolor=\"" +
|
QString s = "<table border=0 cellspacing=0 width=100%><tr><td bgcolor=\"" +
|
||||||
@ -1651,6 +1655,8 @@ void MainWindow::doubleClickOnCall(bool shift, bool ctrl)
|
|||||||
int i4=t.mid(i1).length();
|
int i4=t.mid(i1).length();
|
||||||
if(i4>60) i4=60;
|
if(i4>60) i4=60;
|
||||||
QString t3=t.mid(i1,i4);
|
QString t3=t.mid(i1,i4);
|
||||||
|
int i5=t3.indexOf(" CQ DX ");
|
||||||
|
if(i5>0) t3=t3.mid(0,i5+3) + "_" + t3.mid(i5+4); //Make it "CQ_DX" (one word)
|
||||||
QStringList t4=t3.split(" ",QString::SkipEmptyParts);
|
QStringList t4=t3.split(" ",QString::SkipEmptyParts);
|
||||||
if(t4.length() <7) return; //Skip the rest if no decoded text
|
if(t4.length() <7) return; //Skip the rest if no decoded text
|
||||||
QString firstcall=t4.at(6);
|
QString firstcall=t4.at(6);
|
||||||
@ -2244,3 +2250,8 @@ void MainWindow::on_actionPrompt_to_log_QSO_triggered(bool checked)
|
|||||||
{
|
{
|
||||||
m_promptToLog=checked;
|
m_promptToLog=checked;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void MainWindow::on_actionBlank_line_between_decoding_periods_triggered(bool checked)
|
||||||
|
{
|
||||||
|
m_insertBlank=checked;
|
||||||
|
}
|
||||||
|
@ -129,10 +129,9 @@ private slots:
|
|||||||
void startTx2();
|
void startTx2();
|
||||||
void stopTx();
|
void stopTx();
|
||||||
void stopTx2();
|
void stopTx2();
|
||||||
|
|
||||||
void on_bandComboBox_currentIndexChanged(int index);
|
void on_bandComboBox_currentIndexChanged(int index);
|
||||||
|
|
||||||
void on_actionPrompt_to_log_QSO_triggered(bool checked);
|
void on_actionPrompt_to_log_QSO_triggered(bool checked);
|
||||||
|
void on_actionBlank_line_between_decoding_periods_triggered(bool checked);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Ui::MainWindow *ui;
|
Ui::MainWindow *ui;
|
||||||
@ -212,6 +211,7 @@ private:
|
|||||||
bool m_After73;
|
bool m_After73;
|
||||||
bool m_promptToLog;
|
bool m_promptToLog;
|
||||||
bool m_blankLine;
|
bool m_blankLine;
|
||||||
|
bool m_insertBlank;
|
||||||
|
|
||||||
char m_decoded[80];
|
char m_decoded[80];
|
||||||
|
|
||||||
|
@ -1633,6 +1633,23 @@ p, li { white-space: pre-wrap; }
|
|||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
<item row="0" column="11">
|
||||||
|
<widget class="QLabel" name="label_2">
|
||||||
|
<property name="text">
|
||||||
|
<string>Now</string>
|
||||||
|
</property>
|
||||||
|
<property name="alignment">
|
||||||
|
<set>Qt::AlignCenter</set>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="0" column="10">
|
||||||
|
<widget class="QLabel" name="label_5">
|
||||||
|
<property name="text">
|
||||||
|
<string>Next</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
@ -1675,6 +1692,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<addaction name="actionConvert_JT9_x_to_RTTY"/>
|
<addaction name="actionConvert_JT9_x_to_RTTY"/>
|
||||||
<addaction name="actionLog_dB_reports_to_Comments"/>
|
<addaction name="actionLog_dB_reports_to_Comments"/>
|
||||||
<addaction name="actionPrompt_to_log_QSO"/>
|
<addaction name="actionPrompt_to_log_QSO"/>
|
||||||
|
<addaction name="actionBlank_line_between_decoding_periods"/>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QMenu" name="menuView">
|
<widget class="QMenu" name="menuView">
|
||||||
<property name="title">
|
<property name="title">
|
||||||
@ -1744,6 +1762,9 @@ p, li { white-space: pre-wrap; }
|
|||||||
</property>
|
</property>
|
||||||
</action>
|
</action>
|
||||||
<action name="actionDeviceSetup">
|
<action name="actionDeviceSetup">
|
||||||
|
<property name="checkable">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Options</string>
|
<string>Options</string>
|
||||||
</property>
|
</property>
|
||||||
@ -2160,6 +2181,14 @@ p, li { white-space: pre-wrap; }
|
|||||||
<string>Prompt me to log QSO</string>
|
<string>Prompt me to log QSO</string>
|
||||||
</property>
|
</property>
|
||||||
</action>
|
</action>
|
||||||
|
<action name="actionBlank_line_between_decoding_periods">
|
||||||
|
<property name="checkable">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Blank line between decoding periods</string>
|
||||||
|
</property>
|
||||||
|
</action>
|
||||||
</widget>
|
</widget>
|
||||||
<layoutdefault spacing="6" margin="11"/>
|
<layoutdefault spacing="6" margin="11"/>
|
||||||
<customwidgets>
|
<customwidgets>
|
||||||
|
Loading…
Reference in New Issue
Block a user