Changeset 5144 in ntrip for trunk/BNC/src/bncwindow.cpp


Ignore:
Timestamp:
May 7, 2013, 4:39:21 PM (11 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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
Note: See TracChangeset for help on using the changeset viewer.