Changeset 2145 in ntrip
- Timestamp:
- Dec 31, 2009, 11:15:50 AM (15 years ago)
- Location:
- trunk/BNC
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncfigureppp.cpp
r2142 r2145 61 61 // 62 62 //////////////////////////////////////////////////////////////////////////// 63 void bncFigurePPP::slotNewPosition( constbncTime&time,constdouble* xyz){63 void bncFigurePPP::slotNewPosition(bncTime time, double x, double y, double z){ 64 64 65 65 const static int MAXNUMPOS = 1000; … … 70 70 71 71 newPos->time = time; 72 newPos->xyz[0] = x yz[0];73 newPos->xyz[1] = xyz[1];74 newPos->xyz[2] = xyz[2];72 newPos->xyz[0] = x; 73 newPos->xyz[1] = y; 74 newPos->xyz[2] = z; 75 75 76 76 _pos.push_back(newPos); 77 78 //// beg test 79 cout << newPos->time.timestr(1) << " " 80 << newPos->xyz[0] << " " 81 << newPos->xyz[1] << " " 82 << newPos->xyz[2] << endl; 83 //// end test 77 84 78 85 if (_pos.size() > MAXNUMPOS) { … … 87 94 //////////////////////////////////////////////////////////////////////////// 88 95 void bncFigurePPP::paintEvent(QPaintEvent *) { 96 97 cout << "paintEvent" << endl; 89 98 90 99 int xMin = 0; -
trunk/BNC/bncfigureppp.h
r2142 r2145 36 36 37 37 public slots: 38 void slotNewPosition( constbncTime&time,constdouble* xyz);38 void slotNewPosition(bncTime time, double x, double y, double z); 39 39 40 40 protected: -
trunk/BNC/bncgetthread.cpp
r2144 r2145 289 289 _PPPclient = new bncPPPclient(_staID); 290 290 qRegisterMetaType<bncTime>("bncTime"); 291 connect(_PPPclient, SIGNAL(newPosition( constbncTime&, constdouble*)),292 this, SIGNAL(newPosition( constbncTime&, constdouble*)));291 connect(_PPPclient, SIGNAL(newPosition(bncTime, double, double, double)), 292 this, SIGNAL(newPosition(bncTime, double, double, double))); 293 293 } 294 294 -
trunk/BNC/bncgetthread.h
r2142 r2145 82 82 void newMessage(QByteArray msg, bool showOnScreen); 83 83 void getThreadFinished(QByteArray staID); 84 void newPosition( constbncTime&time,constdouble*);84 void newPosition(bncTime time, double x, double y, double z); 85 85 86 86 protected: -
trunk/BNC/bncpppclient.cpp
r2143 r2145 334 334 // --------------- 335 335 if (_model->update(_epoData) == success) { 336 double xyz[3]; 337 xyz[0] = _model->x(); 338 xyz[1] = _model->y(); 339 xyz[2] = _model->z(); 340 emit newPosition(_model->time(), xyz); 341 } 342 } 343 336 emit newPosition(_model->time(), _model->x(), _model->y(), _model->z()); 337 } 338 } 339 -
trunk/BNC/bncpppclient.h
r2142 r2145 93 93 94 94 signals: 95 constbncTime&time,constdouble*);95 void newPosition(bncTime time, double x, double y, double z); 96 96 97 97 private: -
trunk/BNC/bncwindow.cpp
r2142 r2145 1222 1222 connect(thread, SIGNAL(newLatency(QByteArray, double)), 1223 1223 _bncFigureLate, SLOT(slotNewLatency(QByteArray, double))); 1224 disconnect(thread, SIGNAL(newPosition(const bncTime&, const double*)), 1225 _bncFigurePPP, SLOT(slotNewPosition(const bncTime&, const double*))); 1226 connect(thread, SIGNAL(newPosition(const bncTime&, const double*)), 1227 _bncFigurePPP, SLOT(slotNewPosition(const bncTime&, const double*))); 1224 disconnect(thread, 1225 SIGNAL(newPosition(bncTime, double, double, double)), 1226 _bncFigurePPP, 1227 SLOT(slotNewPosition(bncTime, double, double, double))); 1228 connect(thread, SIGNAL(newPosition(bncTime, double, double, double)), 1229 _bncFigurePPP, 1230 SLOT(slotNewPosition(bncTime, double, double, double))); 1228 1231 break; 1229 1232 }
Note:
See TracChangeset
for help on using the changeset viewer.