Changeset 2078 in ntrip


Ignore:
Timestamp:
Dec 5, 2009, 1:12:11 PM (14 years ago)
Author:
mervart
Message:

* empty log message *

Location:
trunk/BNC
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncwindow.cpp

    r2012 r2078  
    302302  // -----------
    303303  _pppMountLineEdit  = new QLineEdit(settings.value("pppMount").toString());
     304  _pppStaticCheckBox = new QCheckBox();
     305  _pppStaticCheckBox->setCheckState(Qt::CheckState(
     306                                    settings.value("pppStatic").toInt()));
    304307
    305308  // Streams
     
    728731  pppLayout->addWidget(new QLabel("Mountpoint"), 0, 0);
    729732  pppLayout->addWidget(_pppMountLineEdit,        0, 1, 1,7);
     733  pppLayout->addWidget(new QLabel("Static"),     1, 0);
     734  pppLayout->addWidget(_pppStaticCheckBox,       1, 1);
    730735  pppgroup->setLayout(pppLayout);
    731736
     
    10331038  settings.setValue("miscMount",   _miscMountLineEdit->text());
    10341039  settings.setValue("pppMount",    _pppMountLineEdit->text());
     1040  settings.setValue("pppStatic",   _pppStaticCheckBox->checkState());
    10351041  settings.setValue("mountPoints", mountPoints);
    10361042  settings.setValue("obsRate",     _obsRateComboBox->currentText());
  • trunk/BNC/bncwindow.h

    r2003 r2078  
    113113    QLineEdit* _miscMountLineEdit;
    114114    QLineEdit* _pppMountLineEdit;
     115    QCheckBox* _pppStaticCheckBox;
    115116    QCheckBox* _rnxV3CheckBox;
    116117    QCheckBox* _ephV3CheckBox;
  • trunk/BNC/ppp.gpt

    r2075 r2078  
    99set title "ZIM20"
    1010set ylabel "meters"
    11 set xlabel "1-Dec-2009"
     11set xlabel "5-Dec-2009"
    1212
    1313plot "ppp" u 1:4 t "dH" w p 3, \
Note: See TracChangeset for help on using the changeset viewer.