Changeset 2003 in ntrip


Ignore:
Timestamp:
Nov 21, 2009, 4:07:06 PM (14 years ago)
Author:
mervart
Message:

* empty log message *

Location:
trunk/BNC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncwindow.cpp

    r1998 r2003  
    287287  // ---------------------
    288288  _miscMountLineEdit  = new QLineEdit(settings.value("miscMount").toString());
    289   _perfIntrComboBox    = new QComboBox();
     289  _perfIntrComboBox   = new QComboBox();
    290290  _perfIntrComboBox->setEditable(false);
    291291  _perfIntrComboBox->addItems(QString(",2 sec, 10 sec,1 min,5 min,15 min,1 hour,6 hours,1 day").split(","));
     
    297297  _scanRTCMCheckBox->setCheckState(Qt::CheckState(
    298298                                    settings.value("scanRTCM").toInt()));
     299
     300  // PPP Options
     301  // -----------
     302  _pppMountLineEdit  = new QLineEdit(settings.value("pppMount").toString());
    299303
    300304  // Streams
     
    387391  QWidget* rgroup = new QWidget();
    388392  QWidget* sergroup = new QWidget();
     393  QWidget* pppgroup = new QWidget();
    389394  _aogroup->addTab(pgroup,tr("Proxy"));
    390395  _aogroup->addTab(ggroup,tr("General"));
     
    396401  _aogroup->addTab(agroup,tr("Outages"));
    397402  _aogroup->addTab(rgroup,tr("Miscellaneous"));
     403  _aogroup->addTab(pppgroup,tr("PPP Client"));
    398404
    399405  // Log Tab
     
    715721  }
    716722
     723  // PPP Client
     724  // ----------
     725  QGridLayout* pppLayout = new QGridLayout;
     726  pppLayout->setColumnMinimumWidth(0,14*ww);
     727  pppLayout->addWidget(new QLabel("Mountpoint"), 0, 0);
     728  pppLayout->addWidget(_pppMountLineEdit,        0, 1, 1,7);
     729  pppgroup->setLayout(pppLayout);
     730
    717731  // Main Layout
    718732  // -----------
    719 
    720733  QGridLayout* mLayout = new QGridLayout;
    721734  _aogroup->setCurrentIndex(settings.value("startTab").toInt());
     
    10181031  settings.setValue("logFile",     _logFileLineEdit->text());
    10191032  settings.setValue("miscMount",   _miscMountLineEdit->text());
     1033  settings.setValue("pppMount",    _pppMountLineEdit->text());
    10201034  settings.setValue("mountPoints", mountPoints);
    10211035  settings.setValue("obsRate",     _obsRateComboBox->currentText());
  • trunk/BNC/bncwindow.h

    r1972 r2003  
    112112    QLineEdit* _corrPathLineEdit;
    113113    QLineEdit* _miscMountLineEdit;
     114    QLineEdit* _pppMountLineEdit;
    114115    QCheckBox* _rnxV3CheckBox;
    115116    QCheckBox* _ephV3CheckBox;
Note: See TracChangeset for help on using the changeset viewer.