- Timestamp:
- May 7, 2013, 4:39:21 PM (12 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bncsettings.cpp
r5080 r5144 169 169 setValue_p("reqcOutLogFile", ""); 170 170 setValue_p("reqcPlotDir", ""); 171 setValue_p("reqcSkyPlotSystems", "ALL"); 171 172 setValue_p("reqcRnxVersion", ""); 172 173 setValue_p("reqcSampling", ""); -
trunk/BNC/src/bncwindow.cpp
r5085 r5144 1074 1074 _reqcPlotDirLineEdit->setMaximumWidth(15*ww); 1075 1075 1076 _reqcSkyPlotSystems = new QComboBox(); 1077 _reqcSkyPlotSystems->setEditable(false); 1078 _reqcSkyPlotSystems->addItems(QString("ALL,GPS,GLONASS,Galileo").split(",")); 1079 ik = _reqcSkyPlotSystems->findText(settings.value("reqcSkyPlotSystems").toString()); 1080 if (ik != -1) { 1081 _reqcSkyPlotSystems->setCurrentIndex(ik); 1082 } 1083 1076 1084 ir = 0; 1077 1085 reqcLayout->addWidget(new QLabel("RINEX file editing, concatenation and quality check."),ir, 0, 1, 20); … … 1099 1107 reqcLayout->addWidget(new QLabel("Directory for plots"), ir, 0, Qt::AlignLeft); 1100 1108 reqcLayout->addWidget(_reqcPlotDirLineEdit, ir, 1, Qt::AlignRight); 1109 reqcLayout->addWidget(_reqcSkyPlotSystems, ir, 2, Qt::AlignRight); 1101 1110 ++ir; 1102 1111 reqcLayout->addWidget(new QLabel(""), ir, 1); … … 1866 1875 settings.setValue("reqcOutLogFile", _reqcOutLogLineEdit->text()); 1867 1876 settings.setValue("reqcPlotDir", _reqcPlotDirLineEdit->text()); 1877 settings.setValue("reqcSkyPlotSystems", _reqcSkyPlotSystems->currentText()); 1868 1878 // Combine Corrections 1869 1879 if (!combineStreams.isEmpty()) { … … 2495 2505 enableWidget(enable, _reqcOutLogLineEdit); 2496 2506 enableWidget(enable && !enable10, _reqcPlotDirLineEdit); 2507 enableWidget(enable && !enable10, _reqcSkyPlotSystems); 2497 2508 } 2498 2509 -
trunk/BNC/src/bncwindow.h
r5063 r5144 179 179 QLineEdit* _reqcOutLogLineEdit; 180 180 QLineEdit* _reqcPlotDirLineEdit; 181 QComboBox* _reqcSkyPlotSystems; 181 182 182 183 QCheckBox* _rnxV3CheckBox;
Note:
See TracChangeset
for help on using the changeset viewer.