Changeset 2141 in ntrip


Ignore:
Timestamp:
Dec 31, 2009, 10:30:43 AM (14 years ago)
Author:
mervart
Message:

* empty log message *

Location:
trunk/BNC
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncgetthread.cpp

    r2113 r2141  
    288288  if (settings.value("pppMount").toString() == _staID) {
    289289    _PPPclient = new bncPPPclient(_staID);
     290    connect(_PPPclient, SIGNAL(newPosition(const double*)),
     291            this, SIGNAL(newPosition(const double*)));
    290292  }
    291293
  • trunk/BNC/bncgetthread.h

    r2035 r2141  
    8181   void newMessage(QByteArray msg, bool showOnScreen);
    8282   void getThreadFinished(QByteArray staID);
     83   void newPosition(const double*);
    8384
    8485 protected:
  • trunk/BNC/bncwindow.cpp

    r2139 r2141  
    5555#include "bncfigure.h"
    5656#include "bncfigurelate.h"
     57#include "bncfigureppp.h"
    5758#include "bncversion.h"
    5859
     
    6768  _bncFigure = new bncFigure(this);
    6869  _bncFigureLate = new bncFigureLate(this);
     70  _bncFigurePPP = new bncFigurePPP(this);
    6971
    7072  int ww = QFontMetrics(this->font()).width('w');
     
    465467  _loggroup->addTab(_bncFigure,tr("Throughput"));
    466468  _loggroup->addTab(_bncFigureLate,tr("Latency"));
     469  _loggroup->addTab(_bncFigurePPP,tr("PPP"));
    467470
    468471  // Proxy Tab
     
    12191222        connect(thread, SIGNAL(newLatency(QByteArray, double)),
    12201223                _bncFigureLate, SLOT(slotNewLatency(QByteArray, double)));
     1224        disconnect(thread, SIGNAL(newPosition(const double*)),
     1225                   _bncFigurePPP, SLOT(slotNewPosition(const double*)));
     1226        connect(thread, SIGNAL(newPosition(const double*)),
     1227                _bncFigurePPP, SLOT(slotNewPosition(const double*)));
    12211228        break;
    12221229      }
  • trunk/BNC/bncwindow.h

    r2137 r2141  
    4949class bncFigure;
    5050class bncFigureLate;
     51class bncFigurePPP;
    5152
    5253class bncWindow : public QMainWindow {
     
    164165    bncFigure*  _bncFigure;
    165166    bncFigureLate*  _bncFigureLate;
     167    bncFigurePPP*   _bncFigurePPP;
    166168
    167169    bncCaster* _caster;
Note: See TracChangeset for help on using the changeset viewer.