source: ntrip/trunk/BNC/bncmap.h@ 2804

Last change on this file since 2804 was 2804, checked in by weber, 13 years ago

Newline at end of file added

File size: 719 bytes
Line 
1// ------------
2// author: jan dousa (jan.dousa@pecny.cz)
3// ------------
4
5#ifndef BNCMAP_H
6#define BNCMAP_H
7
8#include <QtGui>
9#include "bncmapview.h"
10
11class bncMap : public QDialog
12{
13 Q_OBJECT
14
15 public:
16 bncMap(QWidget* parent = 0 );
17 ~bncMap();
18
19 public slots:
20 void slotNewPoint(QPointF, QString, QPen);
21 void slotResetMap();
22 void slotFitMap();
23 void slotZoomIn();
24 void slotZoomOut();
25 void slotCreateMap();
26 void slotCleanMap();
27 void slotReadMap();
28
29 private:
30
31 double _scale;
32 double _LaOff;
33
34 BncMapView* _mapView;
35 QGraphicsScene* _mapScen;
36 QPolygonF _worldMap;
37 QPolygonF _allPoints;
38 QMutex _mutexMap;
39
40};
41
42#endif
Note: See TracBrowser for help on using the repository browser.