From d09fc8d6790b08a0f5a1c28629372e6a90a6bfae Mon Sep 17 00:00:00 2001 From: oaq Date: Mon, 28 Oct 2024 14:33:09 +1100 Subject: [PATCH] rtknavi_qt: increase monitor column width for sbas and rtcm to avoid excess abgreviation. --- app/qtapp/rtknavi_qt/mondlg.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/qtapp/rtknavi_qt/mondlg.cpp b/app/qtapp/rtknavi_qt/mondlg.cpp index 9354b19ac..b032d522b 100644 --- a/app/qtapp/rtknavi_qt/mondlg.cpp +++ b/app/qtapp/rtknavi_qt/mondlg.cpp @@ -1597,7 +1597,7 @@ void MonitorDialog::setSbsMessages() { header.clear(); header << tr("Trcv") << tr("PRN") << tr("STR") << tr("Type") << tr("Message") << tr("Contents"); - int i, width[] = {200, 25, 25, 25, 420, 400}; + int i, width[] = {200, 45, 45, 45, 420, 400}; ui->tWConsole->setColumnCount(6); ui->tWConsole->setRowCount(0); @@ -1671,7 +1671,7 @@ void MonitorDialog::setSbsLong() header << tr("SAT") << tr("Status") << tr("IODE") << tr("dX (m)") << tr("dY (m)") << tr("dZ (m)") << tr("dVX (m/s)") << tr("dVY (m/s)") << tr("dVZ (m/s)") << tr("daf0 (ns)") << tr("daf1 (ns/s)") << tr("T0"); - int i, width[] = {25, 30, 30, 55, 55, 55, 100, 100, 100, 85, 100, 200}; + int i, width[] = {46, 60, 50, 70, 70, 70, 100, 100, 100, 100, 100, 200}; ui->tWConsole->setColumnCount(12); ui->tWConsole->setRowCount(0); @@ -1732,7 +1732,7 @@ void MonitorDialog::setSbsIono() header.clear(); header << tr("IODI") << tr("Lat (deg)") << tr("Lon (deg)") << tr("GIVEI") << tr("Delay (m)") << tr("T0"); - int i, width[] = {30, 130, 130, 30, 100, 200}; + int i, width[] = {50, 130, 130, 50, 100, 200}; ui->tWConsole->setColumnCount(6); ui->tWConsole->setRowCount(0); @@ -1791,7 +1791,7 @@ void MonitorDialog::setSbsFast() header.clear(); header << tr("SAT") << tr("Status") << tr("PRC (m)") << tr("RRC (m)") << tr("IODF") << tr("UDREI") << tr("AI") << tr("Tof"); - int i, width[] = {25, 30, 80, 80, 30, 30, 30, 200}; + int i, width[] = {46, 60, 80, 80, 55, 60, 30, 200}; ui->tWConsole->setColumnCount(8); ui->tWConsole->setRowCount(0); @@ -1951,7 +1951,7 @@ void MonitorDialog::setRtcmDgps() header.clear(); header << tr("SAT") << tr("Status") << tr("PRC (m)") << tr("RRC (m)") << tr("IOD") << tr("UDRE") << tr("T0"); - int i, width[] = {25, 30, 80, 80, 30, 30, 115}; + int i, width[] = {46, 60, 80, 80, 30, 30, 115}; ui->tWConsole->setColumnCount(7); ui->tWConsole->setRowCount(MAXSAT); @@ -2000,7 +2000,7 @@ void MonitorDialog::setRtcmSsr() header << tr("SAT") << tr("Status") << tr("UDI (s)") << tr("UDHR (s)") << tr("IOD") << tr("URA") << tr("Datum") << tr("T0") << tr("D0-A (m)") << tr("D0-C (m)") << tr("D0-R (m)") << tr("D1-A (mm/s)") << tr("D1-C (mm/s)") << tr("D1-R (mm/s)") << tr("C0 (m)") << tr("C1 (mm/s)") << tr("C2 (mm/s²)") << tr("C-HR (m)") << tr("Code Bias (m)") << tr("Phase Bias (m)"); - int i, width[] = { 25, 40, 70, 90, 30, 25, 70, 115, 90, 90, 90, 120, 120, 120, 90, 120, 120, 120, 200, 200 }; + int i, width[] = { 46, 60, 70, 90, 30, 25, 70, 115, 90, 90, 90, 120, 120, 120, 90, 120, 120, 120, 200, 200 }; ui->tWConsole->setColumnCount(20); ui->tWConsole->setRowCount(0);