Changeset 1972 in ntrip for trunk/BNC/bncwindow.cpp


Ignore:
Timestamp:
Nov 17, 2009, 3:37:14 PM (14 years ago)
Author:
weber
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncwindow.cpp

    r1957 r1972  
    5454#include "bncsettings.h"
    5555#include "bncfigure.h"
     56#include "bncfigurelate.h"
    5657
    5758using namespace std;
     
    6465
    6566  _bncFigure = new bncFigure(this);
     67  _bncFigureLate = new bncFigureLate(this);
    6668
    6769  int ww = QFontMetrics(this->font()).width('w');
     
    354356  _log->setWhatsThis(tr("Records of BNC's activities are shown in the 'Log' tab. The message log covers the communication status between BNC and the NTRIP broadcaster as well as any problems that occur in the communication link, stream availability, stream delay, stream conversion etc."));
    355357  _bncFigure->setWhatsThis(tr("The bandwidth consumtion per stream is shown in the 'Throughput' tab in bits per second (bps) or kilo bits per second (kbps)."));
     358  _bncFigureLate->setWhatsThis(tr("Latency"));
    356359  _ephV3CheckBox->setWhatsThis(tr("The default format for output of RINEX Navigation data containing Broadcast Ephemeris is RINEX Version 2.11. Select 'Version 3' if you want to output the ephemeris in RINEX Version 3 format."));
    357360  _rnxV3CheckBox->setWhatsThis(tr("The default format for RINEX Observation files is RINEX Version 2.11. Select 'Version 3' if you want to save the observations in RINEX Version 3 format."));
     
    399402  _loggroup->addTab(_log,tr("Log"));
    400403  _loggroup->addTab(_bncFigure,tr("Throughput"));
     404  _loggroup->addTab(_bncFigureLate,tr("Latency"));
    401405
    402406  // Proxy Tab
     
    11081112
    11091113  _bncFigure->updateMountPoints();
     1114  _bncFigureLate->updateMountPoints();
    11101115  _caster->slotReadMountPoints();
    11111116}
     
    12331238        connect(thread, SIGNAL(newBytes(QByteArray, double)),
    12341239                _bncFigure, SLOT(slotNewData(QByteArray, double)));
    1235 
     1240        connect(thread, SIGNAL(newLatency(QByteArray, double)),
     1241                _bncFigureLate, SLOT(slotNewData(QByteArray, double)));
    12361242        break;
    12371243      }
Note: See TracChangeset for help on using the changeset viewer.