Changeset 6299 in ntrip
- Timestamp:
- Nov 7, 2014, 10:05:57 AM (10 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bncwindow.cpp
r6266 r6299 1013 1013 } 1014 1014 1015 _reqcLogSummaryOnly = new QCheckBox(); 1016 _reqcLogSummaryOnly->setCheckState(Qt::CheckState(settings.value("reqcLogSummaryOnly").toInt())); 1017 1015 1018 ir = 0; 1016 1019 reqcLayout->addWidget(new QLabel("RINEX file editing, concatenation and quality check."),ir, 0, 1, 20); … … 1033 1036 reqcLayout->addWidget(new QLabel("Nav"), ir, 4, Qt::AlignLeft); 1034 1037 ++ir; 1038 reqcLayout->addWidget(new QLabel("Log File"), ir, 0, Qt::AlignLeft); 1035 1039 reqcLayout->addWidget(_reqcOutLogLineEdit, ir, 1, Qt::AlignRight); 1036 reqcLayout->addWidget(new QLabel("Log"), ir, 2, Qt::AlignLeft); 1040 reqcLayout->addWidget(new QLabel("summary only"), ir, 3, Qt::AlignRight); 1041 reqcLayout->addWidget(_reqcLogSummaryOnly, ir, 4, Qt::AlignLeft); 1037 1042 ++ir; 1038 1043 reqcLayout->addWidget(new QLabel("Directory for plots"), ir, 0, Qt::AlignLeft); … … 1638 1643 settings.setValue("reqcPlotDir", _reqcPlotDirLineEdit->text()); 1639 1644 settings.setValue("reqcSkyPlotSystems", _reqcSkyPlotSystems->currentText()); 1645 settings.setValue("reqcLogSummaryOnly", _reqcLogSummaryOnly->checkState()); 1640 1646 // Combine Corrections 1641 1647 if (!combineStreams.isEmpty()) { … … 2171 2177 enableWidget(enable && !enable10, _reqcPlotDirLineEdit); 2172 2178 enableWidget(enable && !enable10, _reqcSkyPlotSystems); 2179 enableWidget(enable && !enable10, _reqcLogSummaryOnly); 2173 2180 } 2174 2181 -
trunk/BNC/src/bncwindow.h
r6237 r6299 149 149 QLineEdit* _reqcPlotDirLineEdit; 150 150 QComboBox* _reqcSkyPlotSystems; 151 QCheckBox* _reqcLogSummaryOnly; 151 152 152 153 QCheckBox* _rnxV3CheckBox;
Note:
See TracChangeset
for help on using the changeset viewer.