- Timestamp:
- Jan 22, 2012, 12:02:38 PM (13 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncwindow.cpp
r3607 r3608 116 116 _actGetData = new QAction(tr("Sta&rt"),this); 117 117 connect(_actGetData, SIGNAL(triggered()), SLOT(slotGetData())); 118 119 _actPostProcessing = new QAction(tr("Start PP"),this); 120 connect(_actPostProcessing, SIGNAL(triggered()), SLOT(slotPostProcessing())); 118 121 119 122 _actStop = new QAction(tr("Sto&p"),this); … … 2021 2024 enableWidget(enable8, _postNavFileChooser); 2022 2025 enableWidget(enable8, _postCorrFileChooser); 2026 _actPostProcessing->setEnabled(enable8); 2023 2027 2024 2028 enableWidget(!enable8, _pppMountLineEdit); … … 2200 2204 delete dlg; 2201 2205 } 2206 2207 // Post-Processing 2208 //////////////////////////////////////////////////////////////////////////// 2209 void bncWindow::slotPostProcessing() { 2210 _actPostProcessing->setEnabled(false); 2211 slotSaveOptions(); 2212 cout << "slotPostProcessing" << endl; 2213 } -
trunk/BNC/bncwindow.h
r3605 r3608 76 76 void slotAddMountPoints(); 77 77 void slotGetData(); 78 void slotPostProcessing(); 78 79 void slotStop(); 79 80 void slotNewMountPoints(QStringList* mountPoints); … … 107 108 QAction* _actQuit; 108 109 QAction* _actGetData; 110 QAction* _actPostProcessing; 109 111 QAction* _actStop; 110 112 QAction* _actAddMountPoints;
Note:
See TracChangeset
for help on using the changeset viewer.