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


Ignore:
Timestamp:
Jan 22, 2012, 12:02:38 PM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncwindow.cpp

    r3607 r3608  
    116116  _actGetData = new QAction(tr("Sta&rt"),this);
    117117  connect(_actGetData, SIGNAL(triggered()), SLOT(slotGetData()));
     118
     119  _actPostProcessing = new QAction(tr("Start PP"),this);
     120  connect(_actPostProcessing, SIGNAL(triggered()), SLOT(slotPostProcessing()));
    118121
    119122  _actStop = new QAction(tr("Sto&p"),this);
     
    20212024    enableWidget(enable8, _postNavFileChooser);
    20222025    enableWidget(enable8, _postCorrFileChooser);
     2026    _actPostProcessing->setEnabled(enable8);
    20232027
    20242028    enableWidget(!enable8, _pppMountLineEdit);
     
    22002204  delete dlg;
    22012205}
     2206
     2207// Post-Processing
     2208////////////////////////////////////////////////////////////////////////////
     2209void bncWindow::slotPostProcessing() {
     2210  _actPostProcessing->setEnabled(false);
     2211  slotSaveOptions();
     2212  cout << "slotPostProcessing" << endl;
     2213}
Note: See TracChangeset for help on using the changeset viewer.