Changeset 10479 in ntrip for trunk/BNC/src/bncwindow.cpp
- Timestamp:
- May 7, 2024, 10:36:55 AM (4 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bncwindow.cpp
r10452 r10479 502 502 _cmbSamplSpinBox->setSuffix(" sec"); 503 503 504 _cmbLogPath = new QLineEdit(settings.value("cmbLogpath").toString()); 505 504 506 QPushButton* addCmbRowButton = new QPushButton("Add Row"); 505 507 QPushButton* delCmbRowButton = new QPushButton("Delete"); … … 521 523 enableWidget(true, _cmbMaxdisplacementLineEdit); 522 524 enableWidget(true, _cmbSamplSpinBox); 525 enableWidget(true, _cmbLogPath); 523 526 } 524 527 else { … … 527 530 enableWidget(false, _cmbMaxdisplacementLineEdit); 528 531 enableWidget(false, _cmbSamplSpinBox); 532 enableWidget(false, _cmbLogPath); 529 533 } 530 534 _cmbGpsCheckBox = new QCheckBox(); … … 1288 1292 populateCmbTable(); 1289 1293 cmbLayout->addWidget(_cmbTable, 0, 0, 8, 10); 1290 cmbLayout->addWidget(new QLabel(" Combine Broadcast Correction streams .<br>"),0, 10, 1, 10);1294 cmbLayout->addWidget(new QLabel(" Combine Broadcast Correction streams"), 0, 10, 1, 10); 1291 1295 cmbLayout->addWidget(addCmbRowButton, 1, 10); 1292 1296 cmbLayout->addWidget(delCmbRowButton, 1, 11); … … 1299 1303 cmbLayout->addWidget(new QLabel("Max Orb Displacement"), 5, 10, Qt::AlignLeft); 1300 1304 cmbLayout->addWidget(_cmbMaxdisplacementLineEdit, 5, 11, Qt::AlignRight); 1301 cmbLayout->addWidget(new QLabel("Sampling"), 6, 10, Qt::AlignLeft); 1302 cmbLayout->addWidget(_cmbSamplSpinBox, 6, 11, Qt::AlignRight); 1305 cmbLayout->addWidget(new QLabel("Logfile directory"), 6, 10, Qt::AlignLeft); 1306 cmbLayout->addWidget(_cmbLogPath, 6, 11, Qt::AlignRight); 1307 cmbLayout->addWidget(new QLabel("Sampling"), 7, 10, Qt::AlignLeft); 1308 cmbLayout->addWidget(_cmbSamplSpinBox, 7, 11, Qt::AlignRight); 1309 1303 1310 1304 1311 cmbLayout->addWidget(new QLabel("GNSS"), 0, 14, Qt::AlignLeft); … … 1602 1609 _cmbMaxresLineEdit->setWhatsThis(tr("<p>BNC combines all incoming clocks according to specified weights. Individual clock estimates that differ by more than 'Maximal Clk Residuum' meters from the average of all clocks will be ignored.<p></p>It is suggested to specify a value of about 0.2 m for the Kalman filter combination approach and a value of about 3.0 meters for the Single-Epoch combination approach.</p><p>Default is a value of '999.0'. <i>[key: cmbMaxres]</i></p>")); 1603 1610 _cmbMaxdisplacementLineEdit->setWhatsThis(tr("<p>BNC builds mean values for all incoming orbit corrections per satellite. Individual orbit corrections that differ by more than 'Maximal Orb Displacement' meters from the average of all orbit corrections per satellite will be ignored.<p></p>It is suggested to specify a value of about 0.5 m.</p><p>Default is a value of '2.0'. <i>[key: cmbMaxdisplacement]</i></p>")); 1604 _cmbSamplSpinBox->setWhatsThis(tr("<p>Select a combination Sampling interval for the clocks. Clock corrections will be produced following that interval.</p><p>A value of 10 sec may be an appropriate choice. A value of zero '0' tells BNC to use all available samples. <i>[key: ]</i></p>")); 1611 _cmbSamplSpinBox->setWhatsThis(tr("<p>Select a combination Sampling interval for the clocks. Clock corrections will be produced following that interval.</p><p>A value of 10 sec may be an appropriate choice. A value of zero '0' tells BNC to use all available samples. <i>[key: cmbSampl]</i></p>")); 1612 _cmbLogPath->setWhatsThis(tr("<p>Specify a directory for saving daily Combination logfiles. If the specified directory does not exist, BNC will not create such files.</p><p>Default is an empty option field, meaning that no Combination logfiles shall be produced. <i>[key: cmbLogpath]</i></p>")); 1605 1613 _cmbGpsCheckBox->setWhatsThis(tr("<p>GPS clock corrections shall be combined. GPS Broadcast ephemeris and corrections are required. <i>[key: cmbGps]</i></p>")); 1606 1614 _cmbGloCheckBox->setWhatsThis(tr("<p>GLONASS clock corrections shall be combined; GLONASS Broadcast ephemeris and corrections are required. <i>[key: cmbGlo]</i></p>")); … … 1743 1751 delete _cmbMaxdisplacementLineEdit; 1744 1752 delete _cmbSamplSpinBox; 1753 delete _cmbLogPath; 1745 1754 delete _cmbMethodComboBox; 1746 1755 delete _cmbGpsCheckBox; … … 2236 2245 settings.setValue("cmbMaxdisplacement", _cmbMaxdisplacementLineEdit->text()); 2237 2246 settings.setValue("cmbSampl", _cmbSamplSpinBox->value()); 2247 settings.setValue("cmbLogpath", _cmbLogPath->text()); 2238 2248 settings.setValue("cmbGps", _cmbGpsCheckBox->checkState()); 2239 2249 settings.setValue("cmbGlo", _cmbGloCheckBox->checkState()); … … 2770 2780 enableWidget(true, _cmbMaxdisplacementLineEdit); 2771 2781 enableWidget(true, _cmbSamplSpinBox); 2782 enableWidget(true, _cmbLogPath); 2772 2783 enableWidget(true, _cmbGpsCheckBox); 2773 2784 enableWidget(true, _cmbGloCheckBox); … … 2784 2795 enableWidget(false, _cmbMaxdisplacementLineEdit); 2785 2796 enableWidget(false, _cmbSamplSpinBox); 2797 enableWidget(false, _cmbLogPath); 2786 2798 enableWidget(false, _cmbGpsCheckBox); 2787 2799 enableWidget(false, _cmbGloCheckBox); … … 2893 2905 enableWidget(false, _cmbMaxdisplacementLineEdit); 2894 2906 enableWidget(false, _cmbSamplSpinBox); 2907 enableWidget(false, _cmbLogPath); 2895 2908 } 2896 2909 }
Note:
See TracChangeset
for help on using the changeset viewer.