Changeset 3686 in ntrip
- Timestamp:
- Feb 12, 2012, 1:17:41 PM (13 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/bncwindow.cpp ¶
r3685 r3686 118 118 connect(_actGetData, SIGNAL(triggered()), SLOT(slotGetData())); 119 119 120 _actPostProcessing = new QAction(tr("Start P P"),this);120 _actPostProcessing = new QAction(tr("Start Post-Processing"),this); 121 121 connect(_actPostProcessing, SIGNAL(triggered()), SLOT(slotStartPostProcessing())); 122 122 … … 1818 1818 toolBar->addAction(_actStop); 1819 1819 toolBar->addAction(_actPostProcessing); 1820 _postProgressLabel = new QLabel("0 Epochs");1821 toolBar->addWidget(_postProgressLabel);1822 enableWidget(false, _postProgressLabel);1823 1820 toolBar->addWidget(new QLabel(" ")); 1824 1821 toolBar->addAction(_actwhatsthis); … … 2237 2234 2238 2235 _actPostProcessing->setEnabled(false); 2236 _actPostProcessing->setText("0 Epochs"); 2239 2237 2240 2238 slotSaveOptions(); 2241 2242 _postProgressLabel->setText("0 Epochs");2243 enableWidget(true, _postProgressLabel);2244 2239 2245 2240 t_postProcessing* postProcessing = new t_postProcessing(this); … … 2255 2250 QMessageBox::information(this, "Information", 2256 2251 "Post-Processing Thread Finished"); 2257 enableWidget(false, _postProgressLabel);2252 _actPostProcessing->setText("Start Post-Processing"); 2258 2253 _actPostProcessing->setEnabled(true); 2259 2254 } … … 2262 2257 //////////////////////////////////////////////////////////////////////////// 2263 2258 void 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 } -
TabularUnified trunk/BNC/bncwindow.h ¶
r3685 r3686 162 162 qtFileChooser* _postNavFileChooser; 163 163 qtFileChooser* _postCorrFileChooser; 164 QLabel* _postProgressLabel;165 164 QLineEdit* _postOutLineEdit; 166 165
Note:
See TracChangeset
for help on using the changeset viewer.