Changeset 3608 in ntrip


Ignore:
Timestamp:
Jan 22, 2012, 12:02:38 PM (12 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC
Files:
2 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}
  • trunk/BNC/bncwindow.h

    r3605 r3608  
    7676    void slotAddMountPoints();
    7777    void slotGetData();
     78    void slotPostProcessing();
    7879    void slotStop();
    7980    void slotNewMountPoints(QStringList* mountPoints);
     
    107108    QAction*   _actQuit;
    108109    QAction*   _actGetData;
     110    QAction*   _actPostProcessing;
    109111    QAction*   _actStop;
    110112    QAction*   _actAddMountPoints;
Note: See TracChangeset for help on using the changeset viewer.