Changeset 967 in ntrip for trunk/BNC/bncwindow.cpp


Ignore:
Timestamp:
Jul 24, 2008, 3:05:56 PM (16 years ago)
Author:
weber
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncwindow.cpp

    r962 r967  
    157157    _corrIntrComboBox->setCurrentIndex(mm);
    158158  }
     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());
    159166  _rnxSamplSpinBox    = new QSpinBox();
    160167  _rnxSamplSpinBox->setMinimum(0);
     
    294301  _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."));
    295302  _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."));
    296304  _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."));
    297305  _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."));
     
    439447  cLayout->addWidget(new QLabel("Port"),                          2, 0);
    440448  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);
    443453  cgroup->setLayout(cLayout);
    444454
     
    584594  settings.setValue("outEphPort",  _outEphPortLineEdit->text());
    585595  settings.setValue("corrPort",    _corrPortLineEdit->text());
     596  settings.setValue("corrTime",    _corrTimeSpinBox->value());
    586597  settings.setValue("rnxPath",     _rnxPathLineEdit->text());
    587598  settings.setValue("ephPath",     _ephPathLineEdit->text());
Note: See TracChangeset for help on using the changeset viewer.