Changeset 5144 in ntrip for trunk/BNC


Ignore:
Timestamp:
May 7, 2013, 4:39:21 PM (11 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bncsettings.cpp

    r5080 r5144  
    169169    setValue_p("reqcOutLogFile",      "");
    170170    setValue_p("reqcPlotDir",         "");
     171    setValue_p("reqcSkyPlotSystems",  "ALL");
    171172    setValue_p("reqcRnxVersion",      "");
    172173    setValue_p("reqcSampling",        "");
  • trunk/BNC/src/bncwindow.cpp

    r5085 r5144  
    10741074  _reqcPlotDirLineEdit->setMaximumWidth(15*ww);
    10751075
     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
    10761084  ir = 0;
    10771085  reqcLayout->addWidget(new QLabel("RINEX file editing, concatenation and quality check."),ir, 0, 1, 20);
     
    10991107  reqcLayout->addWidget(new QLabel("Directory for plots"),       ir, 0, Qt::AlignLeft);
    11001108  reqcLayout->addWidget(_reqcPlotDirLineEdit,                    ir, 1, Qt::AlignRight);
     1109  reqcLayout->addWidget(_reqcSkyPlotSystems,                     ir, 2, Qt::AlignRight);
    11011110  ++ir;
    11021111  reqcLayout->addWidget(new QLabel(""), ir, 1);
     
    18661875  settings.setValue("reqcOutLogFile", _reqcOutLogLineEdit->text());
    18671876  settings.setValue("reqcPlotDir",    _reqcPlotDirLineEdit->text());
     1877  settings.setValue("reqcSkyPlotSystems", _reqcSkyPlotSystems->currentText());
    18681878// Combine Corrections
    18691879  if (!combineStreams.isEmpty()) {
     
    24952505    enableWidget(enable,              _reqcOutLogLineEdit);
    24962506    enableWidget(enable && !enable10, _reqcPlotDirLineEdit);
     2507    enableWidget(enable && !enable10, _reqcSkyPlotSystems);
    24972508  }
    24982509
  • trunk/BNC/src/bncwindow.h

    r5063 r5144  
    179179    QLineEdit*     _reqcOutLogLineEdit;
    180180    QLineEdit*     _reqcPlotDirLineEdit;
     181    QComboBox*     _reqcSkyPlotSystems;
    181182
    182183    QCheckBox* _rnxV3CheckBox;
Note: See TracChangeset for help on using the changeset viewer.