Changeset 3783 in ntrip for trunk/BNC/bncwindow.cpp


Ignore:
Timestamp:
Apr 5, 2012, 12:06:53 PM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncwindow.cpp

    r3782 r3783  
    386386  _pppSPPComboBox = new QComboBox();
    387387  _pppSPPComboBox->setEditable(false);
    388   _pppSPPComboBox->addItems(QString("Realtime-PPP,Realtime-SPP,Post-Processing").split(","));
     388  _pppSPPComboBox->addItems(QString(",Realtime-PPP,Realtime-SPP,Post-Processing").split(","));
    389389  int ik = _pppSPPComboBox->findText(settings.value("pppSPP").toString());
    390390  if (ik != -1) {
     
    961961  _teqcActionComboBox = new QComboBox();
    962962  _teqcActionComboBox->setEditable(false);
    963   _teqcActionComboBox->addItems(QString("Edit, Analyze").split(","));
     963  _teqcActionComboBox->addItems(QString(",Edit,Analyze").split(","));
    964964  ik = _teqcActionComboBox->findText(settings.value("teqcAction").toString());
    965965  if (ik != -1) {
     
    16561656}
    16571657
    1658 // Retrieve Data
     1658// Start It!
    16591659////////////////////////////////////////////////////////////////////////////
    16601660void bncWindow::slotStart() {
    16611661  slotSaveOptions();
     1662  if      ( _pppSPPComboBox->currentText() == "Post-Processing" ) {
     1663    startPostProcessingPPP();
     1664  }
     1665  else if ( !_teqcActionComboBox->currentText().isEmpty() ) {
     1666    startPostProcessingTeqc();
     1667  }
     1668  else {
     1669    startRealTime();
     1670  }
     1671}
     1672
     1673// Start Real-Time (Retrieve Data etc.)
     1674////////////////////////////////////////////////////////////////////////////
     1675void bncWindow::startRealTime() {
    16621676
    16631677  _bncFigurePPP->reset();
Note: See TracChangeset for help on using the changeset viewer.