Changeset 6299 in ntrip


Ignore:
Timestamp:
Nov 7, 2014, 10:05:57 AM (9 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src
Files:
2 edited

Legend:

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

    r6266 r6299  
    10131013  }
    10141014
     1015  _reqcLogSummaryOnly = new QCheckBox();
     1016  _reqcLogSummaryOnly->setCheckState(Qt::CheckState(settings.value("reqcLogSummaryOnly").toInt()));
     1017
    10151018  ir = 0;
    10161019  reqcLayout->addWidget(new QLabel("RINEX file editing, concatenation and quality check."),ir, 0, 1, 20);
     
    10331036  reqcLayout->addWidget(new QLabel("Nav"),                       ir, 4, Qt::AlignLeft);
    10341037  ++ir;
     1038  reqcLayout->addWidget(new QLabel("Log File"),                  ir, 0, Qt::AlignLeft);
    10351039  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);
    10371042  ++ir;
    10381043  reqcLayout->addWidget(new QLabel("Directory for plots"),       ir, 0, Qt::AlignLeft);
     
    16381643  settings.setValue("reqcPlotDir",    _reqcPlotDirLineEdit->text());
    16391644  settings.setValue("reqcSkyPlotSystems", _reqcSkyPlotSystems->currentText());
     1645  settings.setValue("reqcLogSummaryOnly", _reqcLogSummaryOnly->checkState());
    16401646// Combine Corrections
    16411647  if (!combineStreams.isEmpty()) {
     
    21712177    enableWidget(enable && !enable10, _reqcPlotDirLineEdit);
    21722178    enableWidget(enable && !enable10, _reqcSkyPlotSystems);
     2179    enableWidget(enable && !enable10, _reqcLogSummaryOnly);
    21732180  }
    21742181
  • trunk/BNC/src/bncwindow.h

    r6237 r6299  
    149149    QLineEdit*     _reqcPlotDirLineEdit;
    150150    QComboBox*     _reqcSkyPlotSystems;
     151    QCheckBox*     _reqcLogSummaryOnly;
    151152
    152153    QCheckBox* _rnxV3CheckBox;
Note: See TracChangeset for help on using the changeset viewer.