Changeset 3826 in ntrip


Ignore:
Timestamp:
Apr 11, 2012, 10:44:32 AM (12 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC
Files:
4 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bnc.pro

    r3740 r3826  
    116116  DEFINES += USE_POSTPROCESSING
    117117  HEADERS += rinex/bncpostprocess.h   rinex/rnxobsfile.h   \
    118              rinex/rnxnavfile.h       rinex/corrfile.h
     118             rinex/rnxnavfile.h       rinex/corrfile.h     \
     119             rinex/teqcedit.h         rinex/teqcanalyze.h
    119120  SOURCES += rinex/bncpostprocess.cpp rinex/rnxobsfile.cpp \
    120              rinex/rnxnavfile.cpp     rinex/corrfile.cpp
     121             rinex/rnxnavfile.cpp     rinex/corrfile.cpp   \
     122             rinex/teqcedit.cpp       rinex/teqcanalyze.cpp
    121123}
    122124
  • trunk/BNC/bncwindow.cpp

    r3825 r3826  
    6565#ifdef USE_POSTPROCESSING
    6666#  include "rinex/bncpostprocess.h"
     67#  include "rinex/teqcedit.h"
     68#  include "rinex/teqcanalyze.h"
    6769#endif
    6870
     
    25152517void bncWindow::startPostProcessingTeqc() {
    25162518#ifdef USE_POSTPROCESSING
    2517   _runningPostProcessingTeqc = false;  // TODO
     2519  _runningPostProcessingTeqc = true;
    25182520  enableStartStop();
    2519   QMessageBox::information(this, "Information",
    2520                            "Teqc-Processing Not Yet Implemented");
     2521  if (_teqcActionComboBox->currentText() == "Analyze") {
     2522    t_teqcAnalyze* teqcAnalyze = new t_teqcAnalyze(this);
     2523    connect(teqcAnalyze, SIGNAL(finished()),
     2524            this, SLOT(slotFinishedPostProcessingTeqc()));
     2525    teqcAnalyze->start();
     2526  }
     2527  else {
     2528    t_teqcEdit* teqcEdit = new t_teqcEdit(this);
     2529    connect(teqcEdit, SIGNAL(finished()),
     2530            this, SLOT(slotFinishedPostProcessingTeqc()));
     2531    teqcEdit->start();
     2532  }
    25212533#else
    25222534  QMessageBox::information(this, "Information",
Note: See TracChangeset for help on using the changeset viewer.