Changeset 9572 in ntrip
- Timestamp:
- Dec 16, 2021, 4:24:52 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bncwindow.cpp
r9565 r9572 131 131 _mapWin = 0; 132 132 133 int ww = QFontMetrics(this->font()). width('w');133 int ww = QFontMetrics(this->font()).horizontalAdvance('w'); 134 134 135 135 static const QStringList labels = QString("account, Streams: resource loader / mountpoint, decoder, country, lat, long, nmea, ntrip, bytes").split(","); … … 1453 1453 _pppWidgets._modelObs->setWhatsThis(tr("<p>Specify which kind of PPP model you want to use:</p><p><ul><li>Iopnosphere-free PPP</li><li>Uncombined PPP</li><li>PPP-RTK (recommended for test purposes only because of an incomplete standardized SSR model)</li><li>DCM with Code or Phase Biases</li><li></p><p>[key: PPP/modelObs]</i></p>")); 1454 1454 _pppWidgets._pseudoObs->setWhatsThis(tr("<p>Specify which kind of pseudo observations you want to use. Please note, pseudo observations regarding the Ionosphere are useful, as soon as the ionospheric information is more accurate than the code data accuracy. <i>[key: PPP/pseudoObs]</i></p>")); 1455 _pppWidgets._sigmaC1->setWhatsThis(tr("<p>Enter a Sigma for G NSS C1 code observations in meters.</p><p>The higher the sigma you enter, the less the contribution ofC1 code observations to a PPP solution from combined code and phase data. 2.0 is likely to be an appropriate choice.</p><p>Default is an empty option field, meaning<br>'Sigma C1 = 2.0' <i>[key: PPP/sigmaC1]</i></p>"));1456 _pppWidgets._sigmaL1->setWhatsThis(tr("<p>Enter a Sigma for G NSS L1 phase observations in meters.</p><p>The higher the sigma you enter, the less the contribution ofL1 phase observations to a PPP solutions from combined code and phase data. 0.02 is likely to be an appropriate choice.</p><p>Default is an empty option field, meaning<br>'Sigma L1 = 0.02' <i>[key: PPP/sigmaL1]</i></p>"));1455 _pppWidgets._sigmaC1->setWhatsThis(tr("<p>Enter a Sigma for GPS C1 code observations in meters.</p><p>The higher the sigma you enter, the less the contribution of GPS C1 code observations to a PPP solution from combined code and phase data. 2.0 is likely to be an appropriate choice.</p><p>Default is an empty option field, meaning<br>'Sigma C1 = 2.0' <i>[key: PPP/sigmaC1]</i></p>")); 1456 _pppWidgets._sigmaL1->setWhatsThis(tr("<p>Enter a Sigma for GPS L1 phase observations in meters.</p><p>The higher the sigma you enter, the less the contribution of GPS L1 phase observations to a PPP solutions from combined code and phase data. 0.02 is likely to be an appropriate choice.</p><p>Default is an empty option field, meaning<br>'Sigma L1 = 0.02' <i>[key: PPP/sigmaL1]</i></p>")); 1457 1457 _pppWidgets._sigmaGIM->setWhatsThis(tr("<p>Enter a Sigma for GIM pseudo observations in meters.</p><p>The higher the sigma you enter, the less the contribution of GIM pseudo observations to a PPP solution. 5.0 is likely to be an appropriate choice.</p><p>Default is an empty option field, meaning<br>'Sigma GIM = 5.0' <i>[key: PPP/sigmaGIM]</i></p>")); 1458 1458 _pppWidgets._maxResC1->setWhatsThis(tr("<p>Specify a maximum for residuals from GPS C1 code observations in a PPP solution. '3.0' meters may be an appropriate choice for that.</p><p>If the maximum is exceeded, contributions from the corresponding observation will be ignored in the PPP solution.</p><p>Default is an empty option field, meaning<br>'Max Res C1 = 3.0' <i>[key: PPP/maxResC1]</i></p>")); … … 1511 1511 // --------------------- 1512 1512 _log->setWhatsThis(tr("<p>Records of BNC's activities are shown in the 'Log' tab. The message log covers the communication status between BNC and the Ntrip Broadcaster as well as problems that occur in the communication link, stream availability, stream delay, stream conversion etc.</p>")); 1513 _bncFigure->setWhatsThis(tr("<p>The bandwi dth consumption per stream is shown in the 'Throughput' tab in bits per second (bps) or kilobits per second (kbps).</p>"));1513 _bncFigure->setWhatsThis(tr("<p>The bandwith consumption per stream is shown in the 'Throughput' tab in bits per second (bps) or kilobits per second (kbps).</p>")); 1514 1514 _bncFigureLate->setWhatsThis(tr("<p>The individual latency of observations of incoming streams is shown in the 'Latency' tab. Streams not carrying observations (e.g. those providing only Broadcast Ephemeris) remain unconsidered.</p><p>Note that the calculation of correct latencies requires the clock of the host computer to be properly synchronized.</p>")); 1515 1515 _bncFigurePPP->setWhatsThis(tr("<p>PPP time series of North (red), East (green) and Up (blue) displacements are shown in the 'PPP Plot' tab when the corresponding option is selected.</p><p>Values are referred to an XYZ a priori coordinate. The sliding PPP time series window covers the period of the latest 5 minutes.</p>")); … … 1793 1793 bool flg[nRows]; 1794 1794 for (int iRow = 0; iRow < nRows; iRow++) { 1795 if (_mountPointsTable->i sItemSelected(_mountPointsTable->item(iRow,1))) {1795 if (_mountPointsTable->item(iRow,1)->isSelected()) { 1796 1796 flg[iRow] = true; 1797 1797 } … … 2341 2341 settings.setValue("font", newFont.toString()); 2342 2342 QApplication::setFont(newFont); 2343 int ww = QFontMetrics(newFont). width('w');2343 int ww = QFontMetrics(newFont).horizontalAdvance('w'); 2344 2344 setMinimumSize(60*ww, 80*ww); 2345 2345 resize(60*ww, 80*ww); … … 2431 2431 tb->setReadOnly(true); 2432 2432 2433 int ww = QFontMetrics(font()). width('w');2433 int ww = QFontMetrics(font()).horizontalAdvance('w'); 2434 2434 QPushButton* _closeButton = new QPushButton("Close"); 2435 2435 _closeButton->setMaximumWidth(10*ww); … … 2461 2461 QDialog(parent) { 2462 2462 2463 int ww = QFontMetrics(font()). width('w');2463 int ww = QFontMetrics(font()).horizontalAdvance('w'); 2464 2464 QPushButton* _closeButton = new QPushButton("Close"); 2465 2465 _closeButton->setMaximumWidth(10*ww); … … 2714 2714 bool flg[nRows]; 2715 2715 for (int iRow = 0; iRow < nRows; iRow++) { 2716 if (_cmbTable->i sItemSelected(_cmbTable->item(iRow,1))) {2716 if (_cmbTable->item(iRow,1)->isSelected()) { 2717 2717 flg[iRow] = true; 2718 2718 } … … 2820 2820 bool flg[nRows]; 2821 2821 for (int iRow = 0; iRow < nRows; iRow++) { 2822 if (_uploadTable->i sItemSelected(_uploadTable->item(iRow,1))) {2822 if (_uploadTable->item(iRow,1)->isSelected()) { 2823 2823 flg[iRow] = true; 2824 2824 } … … 2979 2979 bool flg[nRows]; 2980 2980 for (int iRow = 0; iRow < nRows; iRow++) { 2981 if (_uploadEphTable->i sItemSelected(_uploadEphTable->item(iRow,1))) {2981 if (_uploadEphTable->item(iRow,1)->isSelected()) { 2982 2982 flg[iRow] = true; 2983 2983 }
Note:
See TracChangeset
for help on using the changeset viewer.