source: ntrip/trunk/BNS/bnscustomtrafo.h@ 7846

Last change on this file since 7846 was 1771, checked in by weber, 15 years ago

* empty log message *

File size: 970 bytes
Line 
1#ifndef BNSCUSTOMTRAFO_H
2#define BNSCUSTOMTRAFO_H
3
4#include <QtCore>
5#include <QtGui>
6#include <QWhatsThis>
7
8class bnsCustomTrafo : public QDialog {
9 Q_OBJECT
10
11 public:
12 bnsCustomTrafo(QWidget* parent);
13 ~bnsCustomTrafo();
14
15 signals:
16 void newMountPoints(QStringList* mountPoints);
17
18 private slots:
19 virtual void accept();
20 void slotWhatsThis();
21
22 private:
23 QLineEdit* _dxLineEdit;
24 QLineEdit* _dyLineEdit;
25 QLineEdit* _dzLineEdit;
26 QLineEdit* _dxrLineEdit;
27 QLineEdit* _dyrLineEdit;
28 QLineEdit* _dzrLineEdit;
29 QLineEdit* _oxLineEdit;
30 QLineEdit* _oyLineEdit;
31 QLineEdit* _ozLineEdit;
32 QLineEdit* _oxrLineEdit;
33 QLineEdit* _oyrLineEdit;
34 QLineEdit* _ozrLineEdit;
35 QLineEdit* _scLineEdit;
36 QLineEdit* _scrLineEdit;
37 QLineEdit* _t0LineEdit;
38
39 QPushButton* _buttonGet;
40 QPushButton* _buttonCancel;
41 QPushButton* _buttonOK;
42 QPushButton* _buttonWhatsThis;
43};
44
45#endif
Note: See TracBrowser for help on using the repository browser.