mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-05-31 13:52:27 -04:00
Update mouse_sommands.txt.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8142 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
4f2e84328f
commit
4d023aacdb
@ -2,15 +2,18 @@ function stdmsg(msg0,bcontest,mygrid)
|
|||||||
|
|
||||||
use iso_c_binding, only: c_bool
|
use iso_c_binding, only: c_bool
|
||||||
use packjt
|
use packjt
|
||||||
character*22 msg0,msg
|
character*22 msg0,msg1,msg
|
||||||
character*6 mygrid
|
character*6 mygrid
|
||||||
integer dat(12)
|
integer dat(12)
|
||||||
logical(c_bool), value :: bcontest
|
logical(c_bool), value :: bcontest
|
||||||
logical(c_bool) :: stdmsg
|
logical(c_bool) :: stdmsg
|
||||||
|
|
||||||
|
msg1=msg0
|
||||||
|
i0=index(msg1,' OOO ')
|
||||||
|
if(i0.gt.10) msg1=msg0(1:i0)
|
||||||
call packmsg(msg0,dat,itype,logical(bcontest))
|
call packmsg(msg0,dat,itype,logical(bcontest))
|
||||||
call unpackmsg(dat,msg,logical(bcontest),mygrid)
|
call unpackmsg(dat,msg,logical(bcontest),mygrid)
|
||||||
stdmsg=(msg.eq.msg0) .and. (itype.ge.0) .and. itype.ne.6
|
stdmsg=(msg.eq.msg1) .and. (itype.ge.0) .and. itype.ne.6
|
||||||
|
|
||||||
return
|
return
|
||||||
end function stdmsg
|
end function stdmsg
|
||||||
|
@ -3809,6 +3809,7 @@ void MainWindow::processMessage(DecodedText const& message, bool shift, bool ctr
|
|||||||
}
|
}
|
||||||
|
|
||||||
auto is_73 = message_words.filter (QRegularExpression {"^(73|RR73)$"}).size ();
|
auto is_73 = message_words.filter (QRegularExpression {"^(73|RR73)$"}).size ();
|
||||||
|
qDebug() << "a" << is_73 << bool(message.isStandardMessage()) << !message.isStandardMessage() << nWarn;
|
||||||
if (!is_73 and !message.isStandardMessage() and (nWarn==0)) {
|
if (!is_73 and !message.isStandardMessage() and (nWarn==0)) {
|
||||||
qDebug () << "Not processing message - hiscall:" << hiscall << "hisgrid:" << hisgrid;
|
qDebug () << "Not processing message - hiscall:" << hiscall << "hisgrid:" << hisgrid;
|
||||||
return;
|
return;
|
||||||
|
@ -8,20 +8,17 @@
|
|||||||
<td><b>Click</b> to set the Rx frequency.<br/>
|
<td><b>Click</b> to set the Rx frequency.<br/>
|
||||||
<b>Shift-click</b> to set Tx frequency.<br/>
|
<b>Shift-click</b> to set Tx frequency.<br/>
|
||||||
<b>Ctrl-click</b> to set Rx and Tx frequencies.<br/>
|
<b>Ctrl-click</b> to set Rx and Tx frequencies.<br/>
|
||||||
<b>Double-click</b> to decode at resulting Rx frequency.<br/>
|
<b>Double-click</b> to also decode at Rx frequency.<br/>
|
||||||
If <b>Lock Tx=Rx</b> is checked all actions set Tx/Rx.
|
If <b>Lock Tx Freq</b> is checked, Tx freq does not move.<br/>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td align="right">Decoded text:</td>
|
<td align="right">Decoded text:</td>
|
||||||
<td><b>Double-click</b> to copy second callsign to Dx Call,<br/>
|
<td><b>Double-click</b> to copy second callsign to Dx Call<br/>
|
||||||
locator to Dx Grid; change Rx and Tx frequencies to<br/>
|
and locator to Dx Grid; change Rx frequency to decoded<br/>
|
||||||
decoded signal's frequency; generate standard messages.<br/>
|
signal's frequency; generate standard messages. Tx<br/>
|
||||||
If first callsign is your own, Tx frequency is not<br/>
|
frequency is not changed unless <b>Ctrl</b> is held down and<br/>
|
||||||
changed unless <b>Ctrl</b> is held down when double-clicking.<br/>
|
<b>Lock Tx Freq</b> is not checked.<br/>
|
||||||
<br/>
|
|
||||||
<b>Alt-Double-click</b> to move only Rx frequency when<br/>
|
|
||||||
replying to a CQ or QRZ caller.
|
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user