Changeset 6776 in ntrip


Ignore:
Timestamp:
Apr 16, 2015, 11:15:29 AM (9 years ago)
Author:
weber
Message:

Log output extended

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bncwindow.cpp

    r6772 r6776  
    18711871  bncSettings settings;
    18721872
     1873  // Active panels
     1874  // -------------
     1875  if (!_rnxPathLineEdit->text().isEmpty())
     1876      BNC_CORE->slotMessage("Panel 'RINEX Observations' active", true);
     1877  if (!_ephPathLineEdit->text().isEmpty())
     1878      BNC_CORE->slotMessage("Panel 'RINEX Ephemeris' active", true);
     1879  if (!_corrPathLineEdit->text().isEmpty())
     1880      BNC_CORE->slotMessage("Panel 'Broadcast Corrections' active", true);
     1881  if (!_outPortLineEdit->text().isEmpty())
     1882      BNC_CORE->slotMessage("Panel 'Feed Engine' active", true);
     1883  if (!_serialMountPointLineEdit->text().isEmpty())
     1884      BNC_CORE->slotMessage("Panel 'Serial Output' active", true);
     1885  if (!_obsRateComboBox->currentText().isEmpty())
     1886      BNC_CORE->slotMessage("Panel 'Outages' active", true);
     1887  if (!_miscMountLineEdit->text().isEmpty())
     1888      BNC_CORE->slotMessage("Panel 'Miscellaneous' active", true);
     1889  if (_pppWidgets._dataSource->currentText() == "Real-Time Streams")
     1890      BNC_CORE->slotMessage("Panel 'PPP' active", true);
     1891  if (_cmbTable->rowCount() > 0)
     1892      BNC_CORE->slotMessage("Panel 'Combine Corrections' active", true);
     1893  if (_uploadTable->rowCount() > 0)
     1894      BNC_CORE->slotMessage("Panel 'Upload Corrections' active", true);
     1895  if (!_uploadEphHostLineEdit->text().isEmpty())
     1896      BNC_CORE->slotMessage("Panel 'UploadEphemeris' active", true);
     1897
    18731898  QDir rnxdir(settings.value("rnxPath").toString());
    18741899  if (!rnxdir.exists()) BNC_CORE->slotMessage("Cannot find RINEX Observations directory", true);
Note: See TracChangeset for help on using the changeset viewer.