- Timestamp:
- Jan 18, 2009, 10:24:09 AM (16 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bnctabledlg.cpp
r1490 r1491 338 338 } 339 339 340 // Create RINEX skeleton header341 ////////////////////////////////////////////////////////////////////////////342 void bncTableDlg::slotSkl() {343 344 int nRows = _table->rowCount();345 for (int iRow = 0; iRow < nRows; iRow++) {346 if (_table->isItemSelected(_table->item(iRow,1))) {347 QString staID = _table->item(iRow,0)->text();348 QString net = _table->item(iRow,6)->text();349 350 QString ftpDir;351 QStringListIterator it(_allLines);352 while (it.hasNext()) {353 QString line = it.next();354 if (line.indexOf("NET") == 0) {355 QStringList tags = line.split(';');356 if (tags.at(1) == net) {357 ftpDir = tags.at(6);358 break;359 }360 }361 }362 363 if (!ftpDir.isEmpty()) {364 QUrl url(ftpDir);365 QMessageBox::warning(0, "Warning", url.host() + "\n" + url.path() +366 "\nnot yet implemented");367 }368 }369 }370 }371 372 340 // Whats This Help 373 341 void bncTableDlg::slotWhatsThis() { -
trunk/BNC/bnctabledlg.h
r1489 r1491 83 83 QComboBox* _ntripVersionComboBox; 84 84 85 QPushButton* _buttonSkl;86 85 QPushButton* _buttonGet; 87 86 QPushButton* _buttonCancel;
Note:
See TracChangeset
for help on using the changeset viewer.