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

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

Scaling site distribution map from caster sourcetable contents

File size: 775 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:
[3289]20 void slotNewPoint(QPointF, QString, QPen, double);
[2796]21 void slotResetMap();
[3289]22 void slotFitFont();
[2796]23 void slotFitMap();
24 void slotZoomIn();
25 void slotZoomOut();
[2753]26 void slotCreateMap();
[2796]27 void slotCleanMap();
[2753]28 void slotReadMap();
29
30 private:
31
[2755]32 double _LaOff;
[2753]33
[2796]34 BncMapView* _mapView;
[2753]35 QGraphicsScene* _mapScen;
36 QPolygonF _worldMap;
[2796]37 QPolygonF _allPoints;
[2753]38 QMutex _mutexMap;
[3289]39 QMultiMap< QString, QList<QVariant> > _allNames;
[2753]40
41};
42
[2804]43#endif
Note: See TracBrowser for help on using the repository browser.