Changeset 6151 in ntrip for trunk/BNC/src/bncwindow.cpp


Ignore:
Timestamp:
Sep 14, 2014, 8:24:57 AM (10 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bncwindow.cpp

    r5993 r6151  
    247247  }
    248248  _corrPortLineEdit    = new QLineEdit(settings.value("corrPort").toString());
    249   _corrTimeSpinBox   = new QSpinBox();
    250   _corrTimeSpinBox->setMinimum(0);
    251   _corrTimeSpinBox->setMaximum(60);
    252   _corrTimeSpinBox->setSingleStep(1);
    253   _corrTimeSpinBox->setSuffix(" sec");
    254   _corrTimeSpinBox->setValue(settings.value("corrTime").toInt());
    255249
    256250  connect(_corrPathLineEdit, SIGNAL(textChanged(const QString &)),
     
    692686  _corrIntrComboBox->setMaximumWidth(9*ww);
    693687  _corrPortLineEdit->setMaximumWidth(9*ww);
    694   _corrTimeSpinBox->setMaximumWidth(9*ww);
    695688
    696689  cLayout->addWidget(new QLabel("Saving Broadcast Ephemeris correction files and correction output through IP port."),0,0,1,50);
     
    701694  cLayout->addWidget(new QLabel("Port"),                          3, 0);
    702695  cLayout->addWidget(_corrPortLineEdit,                           3, 1);
    703   cLayout->addWidget(new QLabel("  Wait for full corr epoch"),    3, 2, Qt::AlignRight);
    704   cLayout->addWidget(_corrTimeSpinBox,                            3, 3, Qt::AlignLeft);
    705696  cLayout->addWidget(new QLabel(" "),                             4, 0);
    706697  cLayout->addWidget(new QLabel(" "),                             5, 0);
     
    11551146  _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."));
    11561147  _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."));
    1157   _corrTimeSpinBox->setWhatsThis(tr("<p>Concerning output through IP port, BNC drops Broadcast Ephemeris Corrections received later than 'Wait for full corr epoch' seconds. A value of 2 to 5 seconds is recommended, depending on the latency of the incoming correction stream(s) and the delay acceptable to your real-time application.</p><p>Specifying a value of '0' means that BNC immediately outputs all incoming Broadcast Epemeris Corrections and does not drop any of them for latency reasons.</p>"));
    11581148  _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."));
    11591149  _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."));
     
    15881578  settings.setValue("corrIntr",    _corrIntrComboBox->currentText());
    15891579  settings.setValue("corrPort",    _corrPortLineEdit->text());
    1590   settings.setValue("corrTime",    _corrTimeSpinBox->value());
    15911580// Feed Engine
    15921581  settings.setValue("outPort",     _outPortLineEdit->text());
Note: See TracChangeset for help on using the changeset viewer.