source: ntrip/trunk/BNC/src/bncmap.h@ 4630

Last change on this file since 4630 was 4630, checked in by mervart, 12 years ago
File size: 484 bytes
Line 
1
2#ifndef BNCMAP_H
3#define BNCMAP_H
4
5#include <QtGui>
6
7class QwtPlot;
8
9class t_bncMap : public QDialog {
10 Q_OBJECT
11
12 public:
13 t_bncMap(QWidget* parent = 0);
14 ~t_bncMap();
15
16 public slots:
17 void slotNewPoint(const QString& name, double latDeg, double lonDeg);
18
19 private slots:
20 void slotClose();
21 void slotPrint();
22
23 protected:
24 virtual void closeEvent(QCloseEvent *);
25
26 private:
27 QwtPlot* _mapPlot;
28 QPushButton* _buttonClose;
29 QPushButton* _buttonPrint;
30};
31
32#endif
Note: See TracBrowser for help on using the repository browser.