TxFreq tracks fQSO unless CTRL is held down.

Red marker for TxFreq.
Max Tol = 500.


git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@2763 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Joe Taylor
2012-11-23 16:05:50 +00:00
parent 35fe0a92c2
commit 7a43d28e68
7 changed files with 67 additions and 23 deletions
+12 -2
View File
@@ -156,11 +156,16 @@ void WideGraph::keyPressEvent(QKeyEvent *e)
{
switch(e->key())
{
int n;
case Qt::Key_F11:
emit f11f12(11);
n=11;
if(e->modifiers() & Qt::ControlModifier) n+=100;
emit f11f12(n);
break;
case Qt::Key_F12:
emit f11f12(12);
n=12;
if(e->modifiers() & Qt::ControlModifier) n+=100;
emit f11f12(n);
break;
default:
e->ignore();
@@ -268,3 +273,8 @@ void WideGraph::on_rbJT9Sync_clicked()
ui->widePlot->m_bCumulative=false;
ui->widePlot->m_bJT9Sync=true;
}
void WideGraph::setTxFreq(int n)
{
ui->widePlot->setTxFreq(n);
}