- Timestamp:
- Dec 26, 2008, 12:50:16 AM (16 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncwindow.cpp
r1332 r1333 148 148 _rnxAppendCheckBox->setCheckState(Qt::CheckState( 149 149 settings.value("rnxAppend").toInt())); 150 _autoStartCheckBox = new QCheckBox(); 151 _autoStartCheckBox->setCheckState(Qt::CheckState( 152 settings.value("autoStart").toInt())); 150 153 _rnxIntrComboBox = new QComboBox(); 151 154 _rnxIntrComboBox->setMaximumWidth(9*ww); … … 308 311 _rnxSkelLineEdit->setWhatsThis(tr("<p>Whenever BNC starts generating RINEX Observation files (and then once every day at midnight), it first tries to retrieve information needed for RINEX headers from so-called public RINEX header skeleton files which are derived from sitelogs. However, sometimes public RINEX header skeleton files are not available, its contents is not up to date, or you need to put additional/optional records in the RINEX header.</p><p>For that BNC allows using personal skeleton files that contain the header records you would like to include. You can derive a personal RINEX header skeleton file from the information given in an up to date sitelog. A file in the RINEX 'Directory' with the RINEX 'Skeleton extension' is interpreted by BNC as a personal RINEX header skeleton file for the corresponding stream.</p>")); 309 312 _rnxAppendCheckBox->setWhatsThis(tr("<p>When BNC is started, new files are created by default and any existing files with the same name will be overwritten. However, users might want to append already existing files following a restart of BNC, a system crash or when BNC crashed. Tick 'Append files' to continue with existing files and keep what has been recorded so far.</p>")); 313 _autoStartCheckBox->setWhatsThis(tr("<p>Tick 'Auto start' for auto-start of BNC at startup time in window mode with preassigned processing options.</p>")); 310 314 _onTheFlyComboBox->setWhatsThis(tr("<p>When operating BNC online in 'no window' mode, some configuration parameters can be changed on-the-fly without interrupting the running process. For that BNC rereads parts of its configuration in pre-defined intervals.<p></p>Select '1 min', '1 hour', or '1 day' to force BNC to reread its configuration every full minute, hour, or day and let in between edited configuration options become effective on-the-fly without terminating uninvolved threads.</p><p>Note that when operating BNC in window mode, on-the-fly changeable configuration options become effective immediately through 'Save & Activate Options'.</p>")); 311 315 _rnxIntrComboBox->setWhatsThis(tr("<p>Select the length of the RINEX Observation file.</p>")); … … 373 377 gLayout->addWidget(new QLabel("Reread configuration"), 2, 0); 374 378 gLayout->addWidget(_onTheFlyComboBox, 2, 1); 375 gLayout->addWidget(new QLabel("General settings for logfile, file handling and configuration on-the-fly."),3, 0, 1, 2, Qt::AlignLeft); 376 gLayout->addWidget(new QLabel(" "),4,0); 379 gLayout->addWidget(new QLabel("Auto start"), 3, 0); 380 gLayout->addWidget(_autoStartCheckBox, 3, 1); 381 gLayout->addWidget(new QLabel("General settings for logfile, file handling, configuration on-the-fly, and auto-start."),4, 0, 1, 2, Qt::AlignLeft); 377 382 gLayout->addWidget(new QLabel(" "),5,0); 378 383 ggroup->setLayout(gLayout); … … 491 496 492 497 _canvas->setLayout(mLayout); 498 499 // Auto start 500 // ---------- 501 if ( Qt::CheckState(settings.value("autoStart").toInt()) == Qt::Checked) { 502 slotGetData(); 503 } 493 504 } 494 505 … … 706 717 settings.setValue("rnxSkel", _rnxSkelLineEdit->text()); 707 718 settings.setValue("rnxAppend", _rnxAppendCheckBox->checkState()); 719 settings.setValue("autoStart", _autoStartCheckBox->checkState()); 708 720 settings.setValue("rnxV3", _rnxV3CheckBox->checkState()); 709 721 settings.setValue("ephV3", _ephV3CheckBox->checkState()); -
trunk/BNC/bncwindow.h
r1329 r1333 120 120 QSpinBox* _binSamplSpinBox; 121 121 QCheckBox* _rnxAppendCheckBox; 122 QCheckBox* _autoStartCheckBox; 122 123 QCheckBox* _scanRTCMCheckBox; 123 124 QCheckBox* _makePauseCheckBox;
Note:
See TracChangeset
for help on using the changeset viewer.