Changeset 2141 in ntrip
- Timestamp:
- Dec 31, 2009, 10:30:43 AM (15 years ago)
- Location:
- trunk/BNC
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncgetthread.cpp
r2113 r2141 288 288 if (settings.value("pppMount").toString() == _staID) { 289 289 _PPPclient = new bncPPPclient(_staID); 290 connect(_PPPclient, SIGNAL(newPosition(const double*)), 291 this, SIGNAL(newPosition(const double*))); 290 292 } 291 293 -
trunk/BNC/bncgetthread.h
r2035 r2141 81 81 void newMessage(QByteArray msg, bool showOnScreen); 82 82 void getThreadFinished(QByteArray staID); 83 void newPosition(const double*); 83 84 84 85 protected: -
trunk/BNC/bncwindow.cpp
r2139 r2141 55 55 #include "bncfigure.h" 56 56 #include "bncfigurelate.h" 57 #include "bncfigureppp.h" 57 58 #include "bncversion.h" 58 59 … … 67 68 _bncFigure = new bncFigure(this); 68 69 _bncFigureLate = new bncFigureLate(this); 70 _bncFigurePPP = new bncFigurePPP(this); 69 71 70 72 int ww = QFontMetrics(this->font()).width('w'); … … 465 467 _loggroup->addTab(_bncFigure,tr("Throughput")); 466 468 _loggroup->addTab(_bncFigureLate,tr("Latency")); 469 _loggroup->addTab(_bncFigurePPP,tr("PPP")); 467 470 468 471 // Proxy Tab … … 1219 1222 connect(thread, SIGNAL(newLatency(QByteArray, double)), 1220 1223 _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*))); 1221 1228 break; 1222 1229 } -
trunk/BNC/bncwindow.h
r2137 r2141 49 49 class bncFigure; 50 50 class bncFigureLate; 51 class bncFigurePPP; 51 52 52 53 class bncWindow : public QMainWindow { … … 164 165 bncFigure* _bncFigure; 165 166 bncFigureLate* _bncFigureLate; 167 bncFigurePPP* _bncFigurePPP; 166 168 167 169 bncCaster* _caster;
Note:
See TracChangeset
for help on using the changeset viewer.