Changeset 3686 in ntrip


Ignore:
Timestamp:
Feb 12, 2012, 1:17:41 PM (12 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncwindow.cpp

    r3685 r3686  
    118118  connect(_actGetData, SIGNAL(triggered()), SLOT(slotGetData()));
    119119
    120   _actPostProcessing = new QAction(tr("Start PP"),this);
     120  _actPostProcessing = new QAction(tr("Start Post-Processing"),this);
    121121  connect(_actPostProcessing, SIGNAL(triggered()), SLOT(slotStartPostProcessing()));
    122122
     
    18181818  toolBar->addAction(_actStop);
    18191819  toolBar->addAction(_actPostProcessing);
    1820   _postProgressLabel = new QLabel("0 Epochs");
    1821   toolBar->addWidget(_postProgressLabel);
    1822   enableWidget(false, _postProgressLabel);
    18231820  toolBar->addWidget(new QLabel("                                           "));
    18241821  toolBar->addAction(_actwhatsthis);
     
    22372234
    22382235  _actPostProcessing->setEnabled(false);
     2236  _actPostProcessing->setText("0 Epochs");
    22392237
    22402238  slotSaveOptions();
    2241 
    2242   _postProgressLabel->setText("0 Epochs");
    2243   enableWidget(true, _postProgressLabel);
    22442239
    22452240  t_postProcessing* postProcessing = new t_postProcessing(this);
     
    22552250  QMessageBox::information(this, "Information",
    22562251                           "Post-Processing Thread Finished");
    2257   enableWidget(false, _postProgressLabel);
     2252  _actPostProcessing->setText("Start Post-Processing");
    22582253  _actPostProcessing->setEnabled(true);
    22592254}
     
    22622257////////////////////////////////////////////////////////////////////////////
    22632258void bncWindow::slotPostProgress(int nEpo) {
    2264   if (_postProgressLabel) {
    2265     _postProgressLabel->setText(QString("%1 Epochs").arg(nEpo));
    2266   }
    2267 }
     2259  if (_actPostProcessing) {
     2260    _actPostProcessing->setText(QString("%1 Epochs").arg(nEpo));
     2261  }
     2262}
  • trunk/BNC/bncwindow.h

    r3685 r3686  
    162162    qtFileChooser* _postNavFileChooser;
    163163    qtFileChooser* _postCorrFileChooser;
    164     QLabel*        _postProgressLabel;
    165164    QLineEdit*     _postOutLineEdit;
    166165
Note: See TracChangeset for help on using the changeset viewer.