From b1c82758ee8dc300ea1dbdf4d748f2bc64634e5a Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Tue, 24 Jan 2023 13:17:49 -0500 Subject: [PATCH] Simplify the Q65W GUI. --- q65w/mainwindow.cpp | 164 -------------- q65w/mainwindow.h | 6 - q65w/mainwindow.ui | 534 ++++++++++++-------------------------------- 3 files changed, 147 insertions(+), 557 deletions(-) diff --git a/q65w/mainwindow.cpp b/q65w/mainwindow.cpp index 4cf7170a2..50c2b723e 100644 --- a/q65w/mainwindow.cpp +++ b/q65w/mainwindow.cpp @@ -43,7 +43,6 @@ MainWindow::MainWindow(QWidget *parent) : ui->labTol1->setStyleSheet( \ "QLabel { background-color : white; color : black; }"); ui->labTol1->setFrameStyle(QFrame::Panel | QFrame::Sunken); - ui->dxStationGroupBox->setStyleSheet("QFrame{border: 5px groove red}"); QActionGroup* paletteGroup = new QActionGroup(this); ui->actionCuteSDR->setActionGroup(paletteGroup); @@ -212,8 +211,6 @@ void MainWindow::writeSettings() SettingsGroup g {&settings, "MainWindow"}; settings.setValue("geometry", saveGeometry()); settings.setValue("MRUdir", m_path); - settings.setValue("DXcall",ui->dxCallEntry->text()); - settings.setValue("DXgrid",ui->dxGridEntry->text()); } SettingsGroup g {&settings, "Common"}; @@ -257,8 +254,6 @@ void MainWindow::readSettings() { SettingsGroup g {&settings, "MainWindow"}; restoreGeometry(settings.value("geometry").toByteArray()); - ui->dxCallEntry->setText(settings.value("DXcall","").toString()); - ui->dxGridEntry->setText(settings.value("DXgrid","").toString()); m_path = settings.value("MRUdir", m_appDir + "/save").toString(); } @@ -525,10 +520,6 @@ void MainWindow::keyPressEvent( QKeyEvent *e ) //keyPressEvent { switch(e->key()) { - case Qt::Key_F4: - ui->dxCallEntry->setText(""); - ui->dxGridEntry->setText(""); - break; case Qt::Key_F6: if(e->modifiers() & Qt::ShiftModifier) { on_actionDecode_remaining_files_in_directory_triggered(); @@ -882,13 +873,9 @@ void MainWindow::decode() //decode() QString mcall=(m_myCall+" ").mid(0,12); QString mgrid=(m_myGrid+" ").mid(0,6); - QString hcall=(ui->dxCallEntry->text()+" ").mid(0,12); - QString hgrid=(ui->dxGridEntry->text()+" ").mid(0,6); memcpy(datcom_.mycall, mcall.toLatin1(), 12); memcpy(datcom_.mygrid, mgrid.toLatin1(), 6); - memcpy(datcom_.hiscall, hcall.toLatin1(), 12); - memcpy(datcom_.hisgrid, hgrid.toLatin1(), 6); if(m_diskData) { memcpy(datcom_.datetime, fname.toLatin1(), 11); } else { @@ -1022,157 +1009,6 @@ void MainWindow::guiUpdate() } } -void MainWindow::lookup() //lookup() -{ - QString hiscall=ui->dxCallEntry->text().toUpper().trimmed(); - ui->dxCallEntry->setText(hiscall); - QString call3File = m_appDir + "/CALL3.TXT"; - QFile f(call3File); - if(!f.open(QIODevice::ReadOnly | QIODevice::Text)) { - msgBox("Cannot open " + call3File); - return; - } - char c[132]; - qint64 n=0; - for(int i=0; i<999999; i++) { - n=f.readLine(c,sizeof(c)); - if(n <= 0) { - ui->dxGridEntry->setText(""); - break; - } - QString t=QString(c); - if(t.indexOf(hiscall)==0) { - int i1=t.indexOf(","); - QString hisgrid=t.mid(i1+1,6); - i1=hisgrid.indexOf(","); - if(i1>0) { - hisgrid=hisgrid.mid(0,4); - } else { - hisgrid=hisgrid.mid(0,4) + hisgrid.mid(4,2).toLower(); - } - ui->dxGridEntry->setText(hisgrid); - break; - } - } - f.close(); -} - -void MainWindow::on_lookupButton_clicked() //Lookup button -{ - lookup(); -} - -void MainWindow::on_addButton_clicked() //Add button -{ - if(ui->dxGridEntry->text()=="") { - msgBox("Please enter a valid grid locator."); - return; - } - m_call3Modified=false; - QString hiscall=ui->dxCallEntry->text().toUpper().trimmed(); - QString hisgrid=ui->dxGridEntry->text().trimmed(); - QString newEntry=hiscall + "," + hisgrid; - - int ret = QMessageBox::warning(this, "Add", - newEntry + "\n" + "Is this station known to be active on EME?", - QMessageBox::Yes | QMessageBox::No, QMessageBox::Yes); - if(ret==QMessageBox::Yes) { - newEntry += ",EME,,"; - } else { - newEntry += ",,,"; - } - QString call3File = m_appDir + "/CALL3.TXT"; - QFile f1(call3File); - if(!f1.open(QIODevice::ReadWrite | QIODevice::Text)) { - msgBox("Cannot open " + call3File); - return; - } - - if(f1.size()==0) { - QTextStream out(&f1); - out << "ZZZZZZ" -#if QT_VERSION >= QT_VERSION_CHECK (5, 15, 0) - << Qt::endl -#else - << endl -#endif - ; - f1.seek (0); - } - - QString tmpFile = m_appDir + "/CALL3.TMP"; - QFile f2(tmpFile); - if(!f2.open(QIODevice::ReadWrite | QIODevice::Truncate | QIODevice::Text)) { - msgBox("Cannot open " + tmpFile); - return; - } - { - QTextStream in(&f1); - QTextStream out(&f2); - QString hc=hiscall; - QString hc1=""; - QString hc2="000000"; - QString s; - do { - s=in.readLine(); - hc1=hc2; - if(s.mid(0,2)=="//") { - out << s + "\n"; - } else { - int i1=s.indexOf(","); - hc2=s.mid(0,i1); - if(hc>hc1 && hchc1 && !m_call3Modified) out << newEntry + "\n"; - } - - if(m_call3Modified) { - auto const& old_path = m_appDir + "/CALL3.OLD"; - QFile f0 {old_path}; - if (f0.exists ()) f0.remove (); - f1.copy (old_path); // copying as we want to preserve - // symlinks - f1.open (QFile::WriteOnly | QFile::Text); // truncates - f2.seek (0); - f1.write (f2.readAll ()); // copy contents - f2.remove (); - } -} - -void MainWindow::on_dxCallEntry_textChanged(const QString &t) //dxCall changed -{ - m_hisCall=t.toUpper().trimmed(); - ui->dxCallEntry->setText(m_hisCall); -} - -void MainWindow::on_dxGridEntry_textChanged(const QString &t) //dxGrid changed -{ - int n=t.length(); - if(n!=4 and n!=6) return; - if(!t[0].isLetter() or !t[1].isLetter()) return; - if(!t[2].isDigit() or !t[3].isDigit()) return; - if(n==4) m_hisGrid=t.mid(0,2).toUpper() + t.mid(2,2); - if(n==6) m_hisGrid=t.mid(0,2).toUpper() + t.mid(2,2) + - t.mid(4,2).toLower(); - ui->dxGridEntry->setText(m_hisGrid); -} - void MainWindow::on_actionQ65A_triggered() { m_modeQ65=1; diff --git a/q65w/mainwindow.h b/q65w/mainwindow.h index e30fdc0f5..03dd7f1fc 100644 --- a/q65w/mainwindow.h +++ b/q65w/mainwindow.h @@ -69,10 +69,6 @@ private slots: void decode(); void decodeBusy(bool b); void on_EraseButton_clicked(); - void on_lookupButton_clicked(); - void on_addButton_clicked(); - void on_dxCallEntry_textChanged(const QString &arg1); - void on_dxGridEntry_textChanged(const QString &arg1); void bumpDF(int n); void on_actionSettings_triggered(); void on_NBcheckBox_toggled(bool checked); @@ -173,7 +169,6 @@ private: QString m_hisGrid; QString m_saveDir; QString m_azelDir; - QString m_dxccPfx; QString m_palette; QString m_dateTime; QString m_mode; @@ -193,7 +188,6 @@ private: void createStatusBar(); void updateStatusBar(); void msgBox(QString t); - void lookup(); bool isGrid4(QString g); }; diff --git a/q65w/mainwindow.ui b/q65w/mainwindow.ui index 37c2d6bc2..bdd976985 100644 --- a/q65w/mainwindow.ui +++ b/q65w/mainwindow.ui @@ -7,7 +7,7 @@ 0 0 472 - 523 + 431 @@ -35,10 +35,10 @@ - + - - + + @@ -61,8 +61,8 @@ UTC Freq DT dB Message - - + + @@ -109,9 +109,56 @@ p, li { white-space: pre-wrap; } - - - + + + + + + + 50 + 150 + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + + + + 140 + 0 + + + + + 165 + 60 + + + + + 16 + + + + QFrame::Panel + + + 2014 Dec 02 +01:23:45 + + + Qt::AlignCenter + + + + @@ -136,7 +183,7 @@ p, li { white-space: pre-wrap; } - + @@ -149,7 +196,7 @@ p, li { white-space: pre-wrap; } - + @@ -162,308 +209,40 @@ p, li { white-space: pre-wrap; } - - - - - - - - - 50 - 0 - - - - QFrame::StyledPanel - - - QFrame::Raised - - - - - + + - + - + 0 0 - 164 - 40 - - - - - 290 - 16777215 - - - - - - - DX Call DX Grid - - - - - 231 - 13 - 50 - 23 - - - - - 50 - 16777215 - - - - SetMsgs - - - - - - 7 - 13 - 150 - 64 - - - - - - - - - - 0 - 0 - - - - - 0 - 23 - - - - - 70 - 16777215 - - - - - - - Qt::AlignCenter - - - - - - - - 0 - 0 - - - - - 0 - 23 - - - - - 70 - 16777215 - - - - - - - Qt::AlignCenter - - - - - - - - - - - - 0 - 0 - - - - - 70 - 0 - - - - - 50 - 16777215 - - - - &Lookup - - - - - - - - 70 - 0 - - - - - 50 - 16777215 - - - - Add - - - - - - - - - - - - - - 140 + 42 0 - 165 - 60 + 42 + 18 - - - 16 - - - - QFrame::Panel - - 2014 Dec 02 -01:23:45 + 500 Qt::AlignCenter - - - - - - Qt::Horizontal - - - QSizePolicy::Minimum - - - - 20 - 20 - - - - - - - - - Qt::Vertical - - - QSizePolicy::Fixed - - - - 20 - 20 - - - - - - - - Maximum drift rate in units of symbol rate per transmissiion. - - - Qt::AlignCenter - - - Max Drift - - - 50 - - - 5 - - - - - - - Qt::Vertical - - - QSizePolicy::Fixed - - - - 20 - 20 - - - - - - - - NB - - - - - + - false + true @@ -471,125 +250,106 @@ p, li { white-space: pre-wrap; } 0 + + + 0 + 23 + + - 80 + 18 16777215 - 0 + 1 - 100 + 6 - 40 - - - Qt::Horizontal + 5 - - - - - - 0 - 0 - - - - - 42 - 0 - - - - - 42 - 18 - - - - 500 - - - Qt::AlignCenter - - - - - - - true - - - - 0 - 0 - - - - - 0 - 23 - - - - - 18 - 16777215 - - - - 1 - - - 6 - - - 5 - - - - - - - - 0 - 0 - - - - - 20 - 16777215 - - - - Tol - - - - + + + + 0 + 0 + + + + + 20 + 16777215 + + + + Tol + + - - + + + + Maximum drift rate in units of symbol rate per transmissiion. + + + Qt::AlignCenter + + + Max Drift + + + 50 + + + 5 + + + + + + + false + + + + 0 + 0 + + + + + 80 + 16777215 + + + + 0 + + + 100 + + + 40 + Qt::Horizontal - - - 40 - 20 - + + + + + + NB - +