source: ntrip/trunk/GnssCenter/map_stations/worldplot.h@ 5419

Last change on this file since 5419 was 5419, checked in by mervart, 11 years ago
File size: 530 bytes
Line 
1#ifndef GnssCenter_WORLDPLOT_H
2#define GnssCenter_WORLDPLOT_H
3
4#include <qwt_plot.h>
5
6class QwtPlotZoomer;
7
8namespace GnssCenter {
9
10class t_worldPlot : public QwtPlot {
11 Q_OBJECT
12 public:
13 t_worldPlot();
14 ~t_worldPlot();
15
16 public slots:
17 void slotNewPoint(const QString& name, double latDeg, double lonDeg);
18 void slotPrint();
19
20 private:
21 QwtPlotZoomer* _zoomer;
22 double _minPointLat;
23 double _maxPointLat;
24 double _minPointLon;
25 double _maxPointLon;
26};
27
28} // namespace GnssCenter
29
30#endif
Note: See TracBrowser for help on using the repository browser.