Changeset 8492 in ntrip for branches/BNC_2.12/src


Ignore:
Timestamp:
Sep 24, 2018, 2:13:47 PM (6 years ago)
Author:
stuerze
Message:
 
Location:
branches/BNC_2.12/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/BNC_2.12/src/bncwindow.cpp

    r8424 r8492  
    280280  _outSamplComboBox    = new QComboBox();
    281281  _outSamplComboBox->addItems(QString("0.1 sec,1 sec,5 sec,10 sec,15 sec,30 sec,60 sec").split(","));
    282   int nn = _rnxSamplComboBox->findText(settings.value("rnxSampl").toString());
     282  int nn = _outSamplComboBox->findText(settings.value("outSampl").toString());
    283283    if (nn != -1) {
    284       _rnxSamplComboBox->setCurrentIndex(nn);
     284      _outSamplComboBox->setCurrentIndex(nn);
    285285    }
    286286  _outFileLineEdit    = new QLineEdit(settings.value("outFile").toString());
     
    21852185  populateMountPointsTable();
    21862186  bncSettings settings;
    2187   _outSamplComboBox->findText(settings.value("rnxSampl").toString());
     2187  _outSamplComboBox->findText(settings.value("outSampl").toString());
    21882188  _outWaitSpinBox->setValue(settings.value("outWait").toInt());
    21892189  QListIterator<bncGetThread*> iTh(threads);
  • branches/BNC_2.12/src/reqcdlg.cpp

    r8398 r8492  
    3535 * Created:    28-Mar-2012
    3636 *
    37  * Changes:   
     37 * Changes:
    3838 *
    3939 * -----------------------------------------------------------------------*/
     
    9090  _reqcSampling->addItems(QString("0.1 sec,1 sec,5 sec,10 sec,15 sec,30 sec,60 sec").split(","));
    9191  bncSettings settings;
    92   int ll = _reqcSampling->findText(settings.value("reqcSampl").toString());
     92  int ll = _reqcSampling->findText(settings.value("reqcSampling").toString());
    9393  if (ll != -1) {
    9494    _reqcSampling->setCurrentIndex(ll);
     
    229229  // WhatsThis, RINEX Editing & QC
    230230  // -----------------------------
    231   _reqcRnxVersion->setWhatsThis(tr("<p>Select version number of emerging new RINEX file.</p><p>Note the following:</p><p>When converting <u>RINEX Version 2 to Version 3 </u>Observation files, the tracking mode or channel information (signal attribute, see RINEX Version 3 documentation) in the (last out of the three characters) observation code is left blank if unknown.</p><p>When converting <u>RINEX Version 3 to Version 2</u>, the mapping of observations follows a 'Signal priority list' with signal attributes as defined in RINEX Version 3.</p>")); 
     231  _reqcRnxVersion->setWhatsThis(tr("<p>Select version number of emerging new RINEX file.</p><p>Note the following:</p><p>When converting <u>RINEX Version 2 to Version 3 </u>Observation files, the tracking mode or channel information (signal attribute, see RINEX Version 3 documentation) in the (last out of the three characters) observation code is left blank if unknown.</p><p>When converting <u>RINEX Version 3 to Version 2</u>, the mapping of observations follows a 'Signal priority list' with signal attributes as defined in RINEX Version 3.</p>"));
    232232  _reqcSampling->setWhatsThis(tr("<p>Select sampling rate of emerging new RINEX Observation file.</p>"));
    233233  _reqcV2Priority->setWhatsThis(tr("<p>Specify a priority list of characters defining signal attributes as defined in RINEX Version 3. Priorities will be used to map observations with RINEX Version 3 attributes from incoming streams to Version 2. The underscore character '_' stands for undefined attributes. A question mark '?' can be used as wildcard which represents any one character.</p><p>Signal priorities can be specified as equal for all systems, as system specific or as system and freq. specific. For example: </li><ul><li>'CWPX_?' (General signal priorities valid for all GNSS) </li><li>'C:IQX I:ABCX' (System specific signal priorities for BDS and IRNSS) </li><li>'G:12&PWCSLXYN G:5&IQX R:12&PC R:3&IQX' (System and frequency specific signal priorities) </li></ul>Default is the following priority list 'G:12&PWCSLXYN_ G:5&IQX_ R:12&PC_ R:3&IQX_ E:16&BCX_ E:578&IQX_ J:1&SLXCZ_ J:26&SLX_ J:5&IQX_ C:IQX_ I:ABCX_ S:1&C_ S:5&IQX_'.</p>"));
     
    280280void reqcDlg::closeEvent(QCloseEvent* event) {
    281281
    282   int iRet = QMessageBox::question(this, "Close", "Save Options?", 
     282  int iRet = QMessageBox::question(this, "Close", "Save Options?",
    283283                                   QMessageBox::Yes, QMessageBox::No,
    284284                                   QMessageBox::Cancel);
Note: See TracChangeset for help on using the changeset viewer.