Changeset 2941 in ntrip


Ignore:
Timestamp:
Jan 31, 2011, 5:50:46 PM (13 years ago)
Author:
weber
Message:

PPP tab 2 modified

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncwindow.cpp

    r2939 r2941  
    352352  _pppRefCrdZLineEdit    = new QLineEdit(settings.value("pppRefCrdZ").toString());
    353353  _pppSync               = new QLineEdit(settings.value("pppSync").toString());
     354  _pppAntennaLineEdit    = new QLineEdit(settings.value("pppAntenna").toString());
     355  _pppAntexLineEdit      = new QLineEdit(settings.value("pppAntex").toString());
     356
    354357
    355358  _pppSPPComboBox = new QComboBox();
     
    376379  _pppPlotCoordinates->setCheckState(Qt::CheckState(
    377380                                settings.value("pppPlotCoordinates").toInt()));
     381
     382  _pppIgnoreSatAntCheckBox = new QCheckBox();
     383  _pppIgnoreSatAntCheckBox->setCheckState(Qt::CheckState(
     384                                settings.value("pppIgnoreSatAnt").toInt()));
    378385
    379386  connect(_pppMountLineEdit, SIGNAL(textChanged(const QString &)),
     
    502509    "are buffered and the processing of each epoch is postponed till the satellite clock "
    503510    "corrections not older than 'pppSync' seconds are available.<p>"));
     511  _pppAntexLineEdit->setWhatsThis(tr("<p>IGS provides a file containing absolute phase center corrections for GNSS satellite and receiver antennas in ANTEX format. Enter the full path to such an ANTEX file.</p>"));
     512  _pppAntennaLineEdit->setWhatsThis(tr("<p>Specify the receiver's antenna name as defined in your ANTEX file. Observations will be corrected for the antenna's offset which may result in a hight reduction of a few centimeters at max. Phase center variations are not yet applied by BNC."));
     513  _pppIgnoreSatAntCheckBox->setWhatsThis(tr("<p>Tick this option to ignore satellite antenna offsets.</p>"));
    504514
    505515  // Canvas with Editable Fields
     
    796806  // -------------------------
    797807  QGridLayout* ppp2Layout = new QGridLayout;
    798 
    799   _pppAntennaLineEdit = new QLineEdit(settings.value("pppAntenna").toString());
    800 //_pppAntennaLineEdit->setMinimumWidth(20*ww);
    801 //_pppAntennaLineEdit->setMaximumWidth(20*ww);
    802 
    803   _pppAntexLineEdit = new QLineEdit(settings.value("pppAntex").toString());
    804 //_pppAntexLineEdit->setMinimumWidth(20*ww);
    805 //_pppAntexLineEdit->setMaximumWidth(20*ww);
    806 
    807   _pppIgnoreSatAntCheckBox = new QCheckBox();
    808   _pppIgnoreSatAntCheckBox->setCheckState(Qt::CheckState(
    809                                 settings.value("pppIgnoreSatAnt").toInt()));
    810808
    811809//ppp2Layout->setColumnMinimumWidth(0,12*ww);
Note: See TracChangeset for help on using the changeset viewer.