Changeset 2078 in ntrip
- Timestamp:
- Dec 5, 2009, 1:12:11 PM (15 years ago)
- Location:
- trunk/BNC
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncwindow.cpp
r2012 r2078 302 302 // ----------- 303 303 _pppMountLineEdit = new QLineEdit(settings.value("pppMount").toString()); 304 _pppStaticCheckBox = new QCheckBox(); 305 _pppStaticCheckBox->setCheckState(Qt::CheckState( 306 settings.value("pppStatic").toInt())); 304 307 305 308 // Streams … … 728 731 pppLayout->addWidget(new QLabel("Mountpoint"), 0, 0); 729 732 pppLayout->addWidget(_pppMountLineEdit, 0, 1, 1,7); 733 pppLayout->addWidget(new QLabel("Static"), 1, 0); 734 pppLayout->addWidget(_pppStaticCheckBox, 1, 1); 730 735 pppgroup->setLayout(pppLayout); 731 736 … … 1033 1038 settings.setValue("miscMount", _miscMountLineEdit->text()); 1034 1039 settings.setValue("pppMount", _pppMountLineEdit->text()); 1040 settings.setValue("pppStatic", _pppStaticCheckBox->checkState()); 1035 1041 settings.setValue("mountPoints", mountPoints); 1036 1042 settings.setValue("obsRate", _obsRateComboBox->currentText()); -
trunk/BNC/bncwindow.h
r2003 r2078 113 113 QLineEdit* _miscMountLineEdit; 114 114 QLineEdit* _pppMountLineEdit; 115 QCheckBox* _pppStaticCheckBox; 115 116 QCheckBox* _rnxV3CheckBox; 116 117 QCheckBox* _ephV3CheckBox; -
trunk/BNC/ppp.gpt
r2075 r2078 9 9 set title "ZIM20" 10 10 set ylabel "meters" 11 set xlabel " 1-Dec-2009"11 set xlabel "5-Dec-2009" 12 12 13 13 plot "ppp" u 1:4 t "dH" w p 3, \
Note:
See TracChangeset
for help on using the changeset viewer.