Changeset 5187 in ntrip for trunk/BNC/src/map


Ignore:
Timestamp:
Jun 9, 2013, 10:48:43 AM (11 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src/map
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/map/bncmapwin.cpp

    r5181 r5187  
    116116//
    117117////////////////////////////////////////////////////////////////////////////
    118 void bncMapWin::slotGotoLocation(double lat, double lon) {
     118void bncMapWin::gotoLocation(double lat, double lon) {
    119119  _currLat = lat;
    120120  _currLon = lon;
     
    142142    _currLat += 0.00001;
    143143    _currLon += 0.00001;
    144     slotGotoLocation(_currLat, _currLon);
     144    gotoLocation(_currLat, _currLon);
    145145    QTimer::singleShot(100, this, SLOT(slotTest()));
    146146  }
    147147}
     148
     149//
     150////////////////////////////////////////////////////////////////////////////
     151void bncMapWin::slotNewPosition(bncTime time, double xx, double yy, double zz) {
     152
     153}
  • trunk/BNC/src/map/bncmapwin.h

    r5181 r5187  
    2828#include <QtGui>
    2929#include <QtWebKit>
     30#include "bnctime.h"
    3031
    3132class bncMapWin : public QDialog {
     
    3940
    4041 public slots:
    41   void slotGotoLocation(double lat, double lon);
     42  void slotNewPosition(bncTime time, double xx, double yy, double zz);
    4243
    4344 private slots:
     
    4849  enum e_mode {mode_test, mode_ppp};
    4950  void loadHtmlPage();
     51  void gotoLocation(double lat, double lon);
    5052  QWebView*    _webView;
    5153  QPushButton* _testButton;
Note: See TracChangeset for help on using the changeset viewer.