From ba8a7710016538f449f5468d48d5d7bf491464d5 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Sun, 10 Nov 2013 16:11:04 +0000 Subject: [PATCH] Updates for IQ+ XT. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/map65@3599 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 2 ++ plotter.cpp | 6 +++++- plotter.h | 2 ++ widegraph.cpp | 33 ++++++++++++++++++++++++--------- widegraph.h | 4 +++- widegraph.ui | 19 +++++++++++++++++++ 6 files changed, 55 insertions(+), 11 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 58ae2bcb9..92b361dd4 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -1493,6 +1493,8 @@ void MainWindow::guiUpdate() lab2->setText("QSO Freq: " + QString::number(g_pWideGraph->QSOfreq())); lab3->setText("QSO DF: " + QString::number(g_pWideGraph->DF())); + g_pWideGraph->updateFreqLabel(); + if(m_startAnother) { m_startAnother=false; on_actionOpen_next_in_directory_triggered(); diff --git a/plotter.cpp b/plotter.cpp index 356464a30..43fddbd43 100644 --- a/plotter.cpp +++ b/plotter.cpp @@ -753,8 +753,12 @@ void CPlotter::setLockTxRx(bool b) } } +double CPlotter::rxFreq() +{ + return floor(datcom_.fcenter) + 0.001*m_fQSO + 0.000001*m_DF; +} + double CPlotter::txFreq() { - qDebug() << "Q" << m_TXfreq << m_TxDF; return m_TXfreq + 0.000001*m_TxDF; } diff --git a/plotter.h b/plotter.h index 0f5d967b4..0fdefed8d 100644 --- a/plotter.h +++ b/plotter.h @@ -68,7 +68,9 @@ public: void set2Dspec(bool b); double fGreen(); void setLockTxRx(bool b); + double rxFreq(); double txFreq(); +// void updateFreqLabel(); signals: void freezeDecode0(int n); diff --git a/widegraph.cpp b/widegraph.cpp index cfe73a8a9..03cec1be9 100644 --- a/widegraph.cpp +++ b/widegraph.cpp @@ -14,7 +14,9 @@ WideGraph::WideGraph(QWidget *parent) : this->setMaximumWidth(2048); this->setMaximumHeight(880); ui->widePlot->setMaximumHeight(800); - + m_bIQxt=false; + ui->labFreq->setStyleSheet( \ + "QLabel { background-color : black; color : yellow; }"); connect(ui->widePlot, SIGNAL(freezeDecode1(int)),this, SLOT(wideFreezeDecode(int))); @@ -47,13 +49,23 @@ WideGraph::WideGraph(QWidget *parent) : settings.endGroup(); } - WideGraph::~WideGraph() { saveSettings(); delete ui; } +void WideGraph::resizeEvent(QResizeEvent* ) //resizeEvent() +{ + if(!size().isValid()) return; +// m_Size = size(); + int w = size().width(); + int h = size().height(); +// qDebug() << "A" << w << h << ui->labFreq->geometry(); + ui->labFreq->setGeometry(QRect(w-160,h-100,131,41)); +// qDebug() << "B" << w << h << ui->labFreq->geometry(); +} + void WideGraph::saveSettings() { //Save user's settings @@ -335,11 +347,8 @@ void WideGraph::on_cbLockTxRx_stateChanged(int n) void WideGraph::rx570() { double f=m_mult570*(1.0+0.000001*m_cal570)*m_dForceCenterFreq; -// qDebug() << "Set Rx Freq" << f; #ifdef WIN32 int iret=set570(f); -// int iret=0; - if(iret != 0) { QMessageBox mb; if(iret==-1) mb.setText("Failed to open Si570."); @@ -352,15 +361,12 @@ void WideGraph::rx570() void WideGraph::tx570() { if(m_bForceCenterFreq) datcom_.fcenter=m_dForceCenterFreq; - + m_bIQxt=true; double f=ui->widePlot->txFreq(); double f1=m_mult570Tx*(1.0+0.000001*m_cal570) * f; int nHz = 1000000.0*f1 + 0.5; -// qDebug() << "Set Tx Freq" << f1 << nHz; #ifdef WIN32 int iret=set570(f1); -// int iret=0; - if(iret != 0) { QMessageBox mb; if(iret==-1) mb.setText("Failed to open Si570."); @@ -369,3 +375,12 @@ void WideGraph::tx570() } #endif } + +void WideGraph::updateFreqLabel() +{ + double rxFreq=ui->widePlot->rxFreq(); + double txFreq=ui->widePlot->txFreq(); + QString t; + t.sprintf("Rx: %10.6f\nTx: %10.6f",rxFreq,txFreq); + ui->labFreq->setText(t); +} diff --git a/widegraph.h b/widegraph.h index 656edc91d..d27ad867f 100644 --- a/widegraph.h +++ b/widegraph.h @@ -40,6 +40,7 @@ public: double fGreen(); void rx570(); void tx570(); + void updateFreqLabel(); qint32 m_qsoFreq; @@ -53,6 +54,7 @@ public slots: protected: virtual void keyPressEvent( QKeyEvent *e ); + void resizeEvent(QResizeEvent* event); private slots: void on_waterfallAvgSpinBox_valueChanged(int arg1); @@ -65,10 +67,10 @@ private slots: void on_fCenterLineEdit_editingFinished(); void on_pbSetRxHardware_clicked(); void on_cbSpec2d_toggled(bool checked); - void on_cbLockTxRx_stateChanged(int arg1); private: + bool m_bIQxt; qint32 m_waterfallAvg; qint32 m_fCal; qint32 m_fSample; diff --git a/widegraph.ui b/widegraph.ui index 96eb439f7..1cd398145 100644 --- a/widegraph.ui +++ b/widegraph.ui @@ -42,6 +42,25 @@ 1 + + + + 1015 + 230 + 131 + 41 + + + + + 12 + + + + Rx: 144.118.200 +Tx: 144.127.317 + +