Changeset 5187 in ntrip for trunk/BNC/src/map
- Timestamp:
- Jun 9, 2013, 10:48:43 AM (12 years ago)
- Location:
- trunk/BNC/src/map
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/src/map/bncmapwin.cpp ¶
r5181 r5187 116 116 // 117 117 //////////////////////////////////////////////////////////////////////////// 118 void bncMapWin:: slotGotoLocation(double lat, double lon) {118 void bncMapWin::gotoLocation(double lat, double lon) { 119 119 _currLat = lat; 120 120 _currLon = lon; … … 142 142 _currLat += 0.00001; 143 143 _currLon += 0.00001; 144 slotGotoLocation(_currLat, _currLon);144 gotoLocation(_currLat, _currLon); 145 145 QTimer::singleShot(100, this, SLOT(slotTest())); 146 146 } 147 147 } 148 149 // 150 //////////////////////////////////////////////////////////////////////////// 151 void bncMapWin::slotNewPosition(bncTime time, double xx, double yy, double zz) { 152 153 } -
TabularUnified trunk/BNC/src/map/bncmapwin.h ¶
r5181 r5187 28 28 #include <QtGui> 29 29 #include <QtWebKit> 30 #include "bnctime.h" 30 31 31 32 class bncMapWin : public QDialog { … … 39 40 40 41 public slots: 41 void slot GotoLocation(double lat, doublelon);42 void slotNewPosition(bncTime time, double xx, double yy, double zz); 42 43 43 44 private slots: … … 48 49 enum e_mode {mode_test, mode_ppp}; 49 50 void loadHtmlPage(); 51 void gotoLocation(double lat, double lon); 50 52 QWebView* _webView; 51 53 QPushButton* _testButton;
Note:
See TracChangeset
for help on using the changeset viewer.