source: ntrip/trunk/BNC/upload/bnccustomtrafo.h@ 3237

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