Changeset 2878 in ntrip


Ignore:
Timestamp:
Jan 25, 2011, 6:36:38 PM (13 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncwindow.cpp

    r2877 r2878  
    807807  // -------------------------
    808808  QGridLayout* ppp2Layout = new QGridLayout;
    809   _pppAntennaLineEdit      = new QLineEdit();
     809
     810  _pppAntennaLineEdit = new QLineEdit(settings.value("pppAntenna").toString());
    810811  _pppAntennaLineEdit->setMaximumWidth(12*ww);
    811   _pppAntexLineEdit        = new QLineEdit();
     812
     813  _pppAntexLineEdit = new QLineEdit(settings.value("pppAntex").toString());
    812814  _pppAntexLineEdit->setMaximumWidth(12*ww);
    813   _pppIgnoreSatAntCheckBox = new QCheckBox;
     815
     816  _pppIgnoreSatAntCheckBox = new QCheckBox();
     817  _pppIgnoreSatAntCheckBox->setCheckState(Qt::CheckState(
     818                                settings.value("pppIngoreSatAnt").toInt()));
    814819
    815820  ppp2Layout->addWidget(new QLabel("Antenna Name"),                     0, 0);
     
    12181223  settings.setValue("pppGLONASS",  _pppGLONASSCheckBox->checkState());
    12191224  settings.setValue("pppGalileo",  _pppGalileoCheckBox->checkState());
     1225  settings.setValue("pppAntenna",      _pppAntennaLineEdit->text());
     1226  settings.setValue("pppAntex",        _pppAntexLineEdit->text());         
     1227  settings.setValue("pppIngoreSatAnt", _pppIgnoreSatAntCheckBox->checkState());
    12201228  settings.setValue("mountPoints", mountPoints);
    12211229  settings.setValue("obsRate",     _obsRateComboBox->currentText());
     
    12561264  settings.setValue("cmbOutFile",    _cmbOutFileLineEdit->text());
    12571265  settings.setValue("cmbSP3File",    _cmbSP3FileLineEdit->text());
     1266  settings.setValue("pppAntenna",      _pppAntennaLineEdit->text());
     1267  settings.setValue("pppAntex",        _pppAntexLineEdit->text());         
     1268  settings.setValue("pppIngoreSatAnt", _pppIgnoreSatAntCheckBox->checkState());
    12581269
    12591270  if (_caster) {
Note: See TracChangeset for help on using the changeset viewer.