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

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

Newline at end of file added

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