- Timestamp:
- Jul 24, 2008, 3:05:56 PM (16 years ago)
- Location:
- trunk/BNC
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncmain.cpp
r951 r967 87 87 settings.setValue("adviseReco", "5"); 88 88 settings.setValue("perfIntr", ""); 89 settings.setValue("waitCorr", 0); 89 90 } 90 91 -
trunk/BNC/bncwindow.cpp
r962 r967 157 157 _corrIntrComboBox->setCurrentIndex(mm); 158 158 } 159 _corrTimeSpinBox = new QSpinBox(); 160 _corrTimeSpinBox->setMinimum(0); 161 _corrTimeSpinBox->setMaximum(30); 162 _corrTimeSpinBox->setSingleStep(1); 163 _corrTimeSpinBox->setSuffix(" sec"); 164 _corrTimeSpinBox->setMaximumWidth(9*ww); 165 _corrTimeSpinBox->setValue(settings.value("corrTime").toInt()); 159 166 _rnxSamplSpinBox = new QSpinBox(); 160 167 _rnxSamplSpinBox->setMinimum(0); … … 294 301 _outEphPortLineEdit->setWhatsThis(tr("BNC can produce ephemeris data in RINEX ASCII format on your local host through an IP port. Specify a port number here to activate this function.")); 295 302 _corrPortLineEdit->setWhatsThis(tr("BNC can produce Broadcast Ephemeris Corrections on your local host through an IP port. Specify a port number here to activate this function.")); 303 _corrTimeSpinBox->setWhatsThis(tr("Wait for full correction epoch.")); 296 304 _rnxPathLineEdit->setWhatsThis(tr("Here you specify the path to where the RINEX Observation files will be stored. If the specified directory does not exist, BNC will not create RINEX Observation files.")); 297 305 _ephPathLineEdit->setWhatsThis(tr("Specify the path for saving Broadcast Ephemeris data as RINEX Navigation files. If the specified directory does not exist, BNC will not create RINEX Navigation files.")); … … 439 447 cLayout->addWidget(new QLabel("Port"), 2, 0); 440 448 cLayout->addWidget(_corrPortLineEdit, 2, 1); 441 cLayout->addWidget(new QLabel("Saving Broadcast Ephemeris correction files and correction output through IP port."),3,0,1,2,Qt::AlignLeft); 442 cLayout->addWidget(new QLabel(" "),4,0); 449 cLayout->addWidget(new QLabel("Wait for full epoch"), 3, 0); 450 cLayout->addWidget(_corrTimeSpinBox, 3, 1); 451 cLayout->addWidget(new QLabel("Saving Broadcast Ephemeris correction files and correction output through IP port."),4,0,1,2,Qt::AlignLeft); 452 cLayout->addWidget(new QLabel(" "),5,0); 443 453 cgroup->setLayout(cLayout); 444 454 … … 584 594 settings.setValue("outEphPort", _outEphPortLineEdit->text()); 585 595 settings.setValue("corrPort", _corrPortLineEdit->text()); 596 settings.setValue("corrTime", _corrTimeSpinBox->value()); 586 597 settings.setValue("rnxPath", _rnxPathLineEdit->text()); 587 598 settings.setValue("ephPath", _ephPathLineEdit->text()); -
trunk/BNC/bncwindow.h
r934 r967 107 107 QCheckBox* _makePauseCheckBox; 108 108 QSpinBox* _waitTimeSpinBox; 109 QSpinBox* _corrTimeSpinBox; 109 110 QComboBox* _obsRateComboBox; 110 111 QSpinBox* _adviseFailSpinBox;
Note:
See TracChangeset
for help on using the changeset viewer.